Details

Add Blur Dithering2x2 effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Blur > Dithering2x2

*without and with Camera Filter Pack Blur Dithering2x2


Property

Range

Default

public 0 to 20 4

Manipulate Blur Dithering2x2 by script

Example:

// Drag and Drop your Camera GameObject 
// with the Blur Dithering2x2 component 
// to your current script on the CamFX_Blur_Dithering2x2 field 

public CameraFilterPack_Blur_Dithering2x2 CamFX_Blur_Dithering2x2; 

void Update() 
{
	CamFX_Blur_Dithering2x2.public =  4;
}