1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 03:23:03 +08:00

Fade out quickly on game exit sequence

This commit is contained in:
Dean Herbert 2023-12-28 17:19:41 +09:00
parent 0ad6ac8b2a
commit b19f72481b
No known key found for this signature in database

View File

@ -399,6 +399,10 @@ namespace osu.Game.Screens.Menu
songTicker.Hide();
this.FadeOut(3000);
bottomElementsFlow
.FadeOut(500, Easing.OutQuint);
return base.OnExiting(e);
}