Details
Add Light Water effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Light > Water
*without and with Camera Filter Pack Light Water
Property |
Range |
Default |
---|---|---|
public | 0.01f to 5 | 4 |
public | 0 to 1 | 0.07f |
public | 0 to 2 | 10 |
public | 0 to 32 | 0.4f |
Manipulate Light Water by script
Example:
// Drag and Drop your Camera GameObject
// with the Light Water component
// to your current script on the CamFX_Light_Water field
public CameraFilterPack_Light_Water CamFX_Light_Water;
void Update()
{
CamFX_Light_Water.public = 4;
}