Details
Add Gradients Desert effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > Gradients > Desert
*without and with Camera Filter Pack Gradients Desert
Property |
Range |
Default |
---|---|---|
Switch | 0f to 1f | 1f |
Fade | 0f to 1f | 1f |
Manipulate Gradients Desert by script
Example:
// Drag and Drop your Camera GameObject
// with the Gradients Desert component
// to your current script on the CamFX_Gradients_Desert field
public CameraFilterPack_Gradients_Desert CamFX_Gradients_Desert;
void Update()
{
CamFX_Gradients_Desert.Switch = 1f;
}