1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 10:07:36 +08:00

Lengthen PopIn transition slightly

This commit is contained in:
Dean Herbert 2018-06-22 14:26:24 +09:00
parent fccd4f965c
commit 3824354cb8

View File

@ -54,7 +54,7 @@ namespace osu.Game.Graphics.UserInterface
}
protected override void PopIn() => this.FadeIn(transition_duration, Easing.OutQuint);
protected override void PopIn() => this.FadeIn(transition_duration * 2, Easing.OutQuint);
protected override void PopOut() => this.FadeOut(transition_duration, Easing.OutQuint);
}