Improve exit procedure.

This commit is contained in:
Dean Herbert
2017-02-17 15:33:08 +09:00
parent 0b922365bb
commit 9e8b4d43dd
4 changed files with 14 additions and 22 deletions

View File

@ -95,7 +95,7 @@ namespace osu.Game.Screens.Menu
protected override bool OnExiting(GameMode next)
{
buttons.State = MenuState.Exit;
Content.FadeOut(ButtonSystem.EXIT_DELAY);
Content.FadeOut(3000);
return base.OnExiting(next);
}
}