Details

Add Glitch Mozaic effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Glitch > Mozaic

*without and with Camera Filter Pack Glitch Mozaic


Property

Range

Default

Intensity 0f to 10f 1f

Manipulate Glitch Mozaic by script

Example:

// Drag and Drop your Camera GameObject 
// with the Glitch Mozaic component 
// to your current script on the CamFX_Glitch_Mozaic field 

public CameraFilterPack_Glitch_Mozaic CamFX_Glitch_Mozaic; 

void Update() 
{
	CamFX_Glitch_Mozaic.Intensity =  1f;
}