Details
Add Blur Regular effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > Regular
*without and with Camera Filter Pack Blur Regular
Property |
Range |
Default |
---|---|---|
public | -0.5f to 0.5f | 4 |
Manipulate Blur Regular by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur Regular component
// to your current script on the CamFX_Blur_Regular field
public CameraFilterPack_Blur_Regular CamFX_Blur_Regular;
void Update()
{
CamFX_Blur_Regular.public = 4;
}