1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 02:13:21 +08:00

Add a simple fade to the results screen

Stops it from immediately disappearing.
This commit is contained in:
Dean Herbert 2021-06-09 17:19:36 +09:00
parent 7b0c5e9d32
commit a65b76bdbf

View File

@ -266,8 +266,11 @@ namespace osu.Game.Screens.Ranking
public override bool OnExiting(IScreen next)
{
if (base.OnExiting(next))
return true;
return base.OnExiting(next);
this.FadeOut(100);
return false;
}
public override bool OnBackButton()