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