1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:12:54 +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;
const float transition_time = 300;
const float transition_time = 400;
public LoginOverlay()
{
@ -71,7 +71,7 @@ namespace osu.Game.Overlays
protected override void PopOut()
{
optionsSection.Bounding = false;
FadeOut(transition_time, EasingTypes.OutQuint);
FadeOut(transition_time);
}
}
}