Details

Add Blur Radial_Fast effect to your camera.

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

*without and with Camera Filter Pack Blur Radial_Fast


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_Fast by script

Example:

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

public CameraFilterPack_Blur_Radial_Fast CamFX_Blur_Radial_Fast; 

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