Details

Add Distortion Noise effect to your camera.

Add it to the Camera GameObject via the Components menuCameraFilterPack > Distortion > Noise

*without and with Camera Filter Pack Distortion Noise


Property

Range

Default

Distortion 0 to 3 1.0f

Manipulate Distortion Noise by script

Example:

// Drag and Drop your Camera GameObject 
// with the Distortion Noise component 
// to your current script on the CamFX_Distortion_Noise field 

public CameraFilterPack_Distortion_Noise CamFX_Distortion_Noise; 

void Update() 
{
	CamFX_Distortion_Noise.Distortion =  1.0f;
}