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