Details
Add Colors Invert effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Colors > Invert
*without and with Camera Filter Pack Colors Invert
Property |
Range |
Default |
---|---|---|
_Fade | 0f to 1f | 1.0f |
Manipulate Colors Invert by script
Example:
// Drag and Drop your Camera GameObject
// with the Colors Invert component
// to your current script on the CamFX_Colors_Invert field
public CameraFilterPack_Color_Invert CamFX_Colors_Invert;
void Update()
{
CamFX_Colors_Invert._Fade = 1.0f;
}