Details

Add Colors Threshold effect to your camera.

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

*without and with Camera Filter Pack Colors Threshold


Property

Range

Default

Threshold 0 to 1 0.3f

Manipulate Colors Threshold by script

Example:

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

public CameraFilterPack_Colors_Threshold CamFX_Colors_Threshold; 

void Update() 
{
	CamFX_Colors_Threshold.Threshold =  0.3f;
}