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