Details

Add Colors Contrast effect to your camera.

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

*without and with Camera Filter Pack Colors Contrast


Property

Range

Default

public -0.02f to 0.02f 4.5f

Manipulate Colors Contrast by script

Example:

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

public CameraFilterPack_Color_Contrast CamFX_Colors_Contrast; 

void Update() 
{
	CamFX_Colors_Contrast.public =  4.5f;
}