Details

Add Colors BrightContrastSaturation effect to your camera.

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

*without and with Camera Filter Pack Colors BrightContrastSaturation


Property

Range

Default

public 0 to 20 2.0f
public 0.0f to 10.0f 1.5f
public 0.0f to 10.0f 1.5f

Manipulate Colors BrightContrastSaturation by script

Example:

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

public CameraFilterPack_Color_BrightContrastSaturation CamFX_Colors_BrightContrastSaturation; 

void Update() 
{
	CamFX_Colors_BrightContrastSaturation.public =  2.0f;
}