Details

Add Blur Radial effect to your camera.

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

*without and with Camera Filter Pack Blur Radial


Property

Range

Default

Intensity -0.5f to 0.5f 0.125f
MovX -2f to 2f 0.5f
MovY -2f to 2f 0.5f

Manipulate Blur Radial by script

Example:

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

public CameraFilterPack_Blur_Radial CamFX_Blur_Radial; 

void Update() 
{
	CamFX_Blur_Radial.Intensity =  0.125f;
}