Using the VFXAnimator Script

A quick tutorial on how to fade UI elements, apply glitch effects, and control timing in Unity.

📜 Get the Script: VFXAnimator.cs on GitHub


Overview

VFXAnimator is a C# script designed for Unity that automates the fading of CanvasGroup and Image components. It features:

Setup Instructions

1. Create an empty GameObject in your Unity scene and attach the VFXAnimator script.
2. In the Inspector, assign:


Basic demonstration of fade in/out effect

Basic Usage

Fading In:
Call PlayFadeIn() from another script or a UI button click:



public class SampleUsage : MonoBehaviour
{
    public VFXAnimator animator;

    void Start()
    {
        // Fade everything in when the scene loads
        animator.PlayFadeIn();
    }
}
            

Fading Out:
Similarly, call PlayFadeOut(). You can optionally pass a callback to run after the sequence finishes:



animator.PlayFadeOut(() =>
{
    Debug.Log("All elements faded out!");
    // You could unload a scene or disable objects here
});
            

Key Properties

Timing Settings
- startingDelay: Wait time before fade in.
- exitDelay: Wait time before fade out.
- delayBetweenElements: How long to wait before starting the next element’s fade.
- fadeDuration: How long each fade/ fill animation lasts.

Glitch Effect
- enableGlitchEffect: Toggle flickering on previously faded elements.
- glitchDuration: How long each flicker lasts.
- glitchRepeats: Number of times each previous element flickers.
- randomGlitchOrder: Flicker prior elements in random order.
- glitchAlphaMin / glitchAlphaMax: Range of alpha used for flickering.

Test Visibility

The testVisibility bool (exposed in the Inspector) allows you to toggle fade in/out at runtime without extra scripting. Flip it to true to auto-fade in, or false to auto-fade out. This is perfect for dialing in the right speed, delays, and glitch values on the fly.

Final Notes

The VFXAnimator script is a simple approach to orchestrate UI fades and glitchy visuals.

Remember to test with various UI elements, from menus to victory screens, to ensure the timings feel just right.

We hope this tutorial helps you integrate smooth, attention-grabbing animations in your Unity project. Enjoy creating awesome UI experiences!