Details

Add Colors RgbClamp effect to your camera.

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

*without and with Camera Filter Pack Colors RgbClamp


Property

Range

Default

Red_Start 0f to 1f 0f
Red_End 0f to 1f 1f
Green_Start 0f to 1f 0f
Green_End 0f to 1f 1f
Blue_Start 0f to 1f 0f
Blue_End 0f to 1f 1f
RGB_Start 0f to 1f 0f
RGB_End 0f to 1f 1f

Manipulate Colors RgbClamp by script

Example:

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

public CameraFilterPack_Colors_RgbClamp CamFX_Colors_RgbClamp; 

void Update() 
{
	CamFX_Colors_RgbClamp.Red_Start =  0f;
}