Details

Add Distortion Flush effect to your camera.

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

*without and with Camera Filter Pack Distortion Flush


Property

Range

Default

Value -10f to 50f 5f

Manipulate Distortion Flush by script

Example:

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

public CameraFilterPack_Distortion_Flush CamFX_Distortion_Flush; 

void Update() 
{
	CamFX_Distortion_Flush.Value =  5f;
}