Details
Add Blur Movie effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Blur > Movie
*without and with Camera Filter Pack Blur Movie
Property |
Range |
Default |
---|---|---|
Radius | 0 to 1000 | 150.0f |
Factor | 0 to 1000 | 200.0f |
FastFilter | 0 to 10 | 2 |
Manipulate Blur Movie by script
Example:
// Drag and Drop your Camera GameObject
// with the Blur Movie component
// to your current script on the CamFX_Blur_Movie field
public CameraFilterPack_Blur_Movie CamFX_Blur_Movie;
void Update()
{
CamFX_Blur_Movie.Radius = 150.0f;
}