Details

Add Colors DarkColor effect to your camera.

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

*without and with Camera Filter Pack Colors DarkColor


Property

Range

Default

Alpha -5f to 5f 1f

Manipulate Colors DarkColor by script

Example:

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

public CameraFilterPack_Colors_DarkColor CamFX_Colors_DarkColor; 

void Update() 
{
	CamFX_Colors_DarkColor.Alpha =  1f;
}