Details
Add AAA WaterDrop effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > AAA > WaterDrop
*without and with Camera Filter Pack AAA WaterDrop
Property |
Range |
Default |
---|---|---|
Distortion | 8 to 64 | 8.0f |
SizeX | 0 to 7 | 1.0f |
SizeY | 0 to 7 | 0.5f |
Speed | 0 to 10 | 1f |
Manipulate AAA WaterDrop by script
Example:
// Drag and Drop your Camera GameObject
// with the AAA WaterDrop component
// to your current script on the CamFX_AAA_WaterDrop field
public CameraFilterPack_AAA_WaterDrop CamFX_AAA_WaterDrop;
void Update()
{
CamFX_AAA_WaterDrop.Distortion = 8.0f;
}