Details

Add Colors NewPosterize effect to your camera.

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

*without and with Camera Filter Pack Colors NewPosterize


Property

Range

Default

Gamma 0f to 2f 1f
Colors 0f to 16f 11f
Green_Mod -1f to 1f 1f

Manipulate Colors NewPosterize by script

Example:

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

public CameraFilterPack_Colors_NewPosterize CamFX_Colors_NewPosterize; 

void Update() 
{
	CamFX_Colors_NewPosterize.Gamma =  1f;
}