Details
Add Distortion Wave_Horizontal effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Distortion > Wave_Horizontal
*without and with Camera Filter Pack Distortion Wave_Horizontal
Property |
Range |
Default |
---|---|---|
WaveIntensity | 1 to 100 | 32f |
Manipulate Distortion Wave_Horizontal by script
Example:
// Drag and Drop your Camera GameObject
// with the Distortion Wave_Horizontal component
// to your current script on the CamFX_Distortion_Wave_Horizontal field
public CameraFilterPack_Distortion_Wave_Horizontal CamFX_Distortion_Wave_Horizontal;
void Update()
{
CamFX_Distortion_Wave_Horizontal.WaveIntensity = 32f;
}