Details

Add Pixelisation Dot effect to your camera.

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

*without and with Camera Filter Pack Pixelisation Dot


Property

Range

Default

Size 0.0001f to 0.5f 0.005f
LightBackGround 0f to 1f 0.3f

Manipulate Pixelisation Dot by script

Example:

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

public CameraFilterPack_Pixelisation_Dot CamFX_Pixelisation_Dot; 

void Update() 
{
	CamFX_Pixelisation_Dot.Size =  0.005f;
}