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)

  1. Place a fullscreen RawImage on a Canvas (Screen Space - Overlay)
  2. Assign a material using the Elfentier/ScreenTransition shader and add the ScreenTransition component
  3. Call Play / Reveal from your code
transition.Play(TransitionMode.CircleWipe, 0.6f,
    () => SceneManager.LoadScene("Next"));
// 新しいシーンで
transition.Reveal();