Details

Add Blur Blurry effect to your camera.

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

*without and with Camera Filter Pack Blur Blurry


Property

Range

Default

Amount 0 to 20 2f
FastFilter 1 to 16 2

Manipulate Blur Blurry by script

Example:

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

public CameraFilterPack_Blur_Blurry CamFX_Blur_Blurry; 

void Update() 
{
	CamFX_Blur_Blurry.Amount =  2f;
}