Details

Add Blend 2 Camera ColorDodge effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Blend 2 Camera > ColorDodge


Property

Range

Default

SwitchCameraToCamera2 0f to 1f 0f
BlendFX 0f to 1f 0.5f

Manipulate Blend 2 Camera ColorDodge by script

Example:

// Drag and Drop your Camera GameObject 
// with the Blend 2 Camera ColorDodge component 
// to your current script on the CamFX_Blend 2 Camera_ColorDodge field 

public CameraFilterPack_Blend2Camera_ColorDodge CamFX_Blend2Camera_ColorDodge; 

void Update() 
{
	CamFX_Blend2Camera_ColorDodge.SwitchCameraToCamera2 =  0f;
}