1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 22:19:30 +08:00

Adjust transitions slightly.

This commit is contained in:
Dean Herbert 2017-01-31 17:05:42 +09:00
parent 62c5ad907a
commit 6cd9f93fb5

View File

@ -18,7 +18,7 @@ namespace osu.Game.Overlays
{ {
private LoginOptions optionsSection; private LoginOptions optionsSection;
const float transition_time = 300; const float transition_time = 400;
public LoginOverlay() public LoginOverlay()
{ {
@ -71,7 +71,7 @@ namespace osu.Game.Overlays
protected override void PopOut() protected override void PopOut()
{ {
optionsSection.Bounding = false; optionsSection.Bounding = false;
FadeOut(transition_time, EasingTypes.OutQuint); FadeOut(transition_time);
} }
} }
} }