Details
Add TV Posterize effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > TV > Posterize
*without and with Camera Filter Pack TV Posterize
Property |
Range |
Default |
---|---|---|
Posterize | 1 to 256 | 64.0f |
Manipulate TV Posterize by script
Example:
// Drag and Drop your Camera GameObject
// with the TV Posterize component
// to your current script on the CamFX_TV_Posterize field
public CameraFilterPack_TV_Posterize CamFX_TV_Posterize;
void Update()
{
CamFX_TV_Posterize.Posterize = 64.0f;
}