Free screen transitions
Free Download
A free Unity package with four screen transitions: fade, circle wipe, horizontal wipe, and diagonal blinds. Just import the unitypackage and use it right away.
MIT License β free for commercial and non-commercial use.
Included transitions
π«οΈ
Fade
The classic fade to black. Fits any scene change.
β
Circle wipe
A retro-style circle closing/opening from the center.
β‘οΈ
Horizontal wipe
A simple wipe covering the screen from left to right.
πΆ
Diagonal blinds
Stylish diagonal bands covering the screen in order.
How to use (3 steps)
- Place a fullscreen RawImage on a Canvas (Screen Space - Overlay)
- Assign a material using the Elfentier/ScreenTransition shader and add the ScreenTransition component
- Call Play / Reveal from your code
transition.Play(TransitionMode.CircleWipe, 0.6f,
() => SceneManager.LoadScene("Next"));
// ζ°γγγ·γΌγ³γ§
transition.Reveal();