Details

Add Distortion Water_Drop effect to your camera.

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

*without and with Camera Filter Pack Distortion Water_Drop


Property

Range

Default

CenterX -1 to 1 0f
CenterY -1 to 1 0f
WaveIntensity 0 to 10 1
NumberOfWaves -2 to 2 5

Manipulate Distortion Water_Drop by script

Example:

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

public CameraFilterPack_Distortion_Water_Drop CamFX_Distortion_Water_Drop; 

void Update() 
{
	CamFX_Distortion_Water_Drop.CenterX =  0f;
}