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