Details

Add Pixel Pixelisation effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Pixel > Pixelisation

*without and with Camera Filter Pack Pixel Pixelisation


Property

Range

Default

_Pixelisation 0.6f to 120 0f
_SizeX 0.6f to 120 1f
_SizeY 0.6f to 120 1f

Manipulate Pixel Pixelisation by script

Example:

// Drag and Drop your Camera GameObject 
// with the Pixel Pixelisation component 
// to your current script on the CamFX_Pixel_Pixelisation field 

public CameraFilterPack_Pixel_Pixelisation CamFX_Pixel_Pixelisation; 

void Update() 
{
	CamFX_Pixel_Pixelisation._Pixelisation =  0f;
}