Details

Add Colors GrayScale effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Colors > GrayScale

*without and with Camera Filter Pack Colors GrayScale


Property

Range

Default

_Fade 0f to 1f 1.0f

Manipulate Colors GrayScale by script

Example:

// Drag and Drop your Camera GameObject 
// with the Colors GrayScale component 
// to your current script on the CamFX_Colors_GrayScale field 

public CameraFilterPack_Color_GrayScale CamFX_Colors_GrayScale; 

void Update() 
{
	CamFX_Colors_GrayScale._Fade =  1.0f;
}