1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:17:23 +08:00

Adjust transition to flyte's liking.

This commit is contained in:
Dean Herbert 2017-03-14 22:11:29 +09:00
parent 2e8b1ad390
commit 12326f610e
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -84,7 +84,7 @@ namespace osu.Game.Screens.Select.Leaderboards
Schedule(() =>
{
FadeIn(200);
content.MoveToY(0, 400, EasingTypes.OutQuint);
content.MoveToY(0, 800, EasingTypes.OutQuint);
Delay(100);
Schedule(() =>
@ -108,7 +108,7 @@ namespace osu.Game.Screens.Select.Leaderboards
for (int i = 0; i < drawables.Length; i++)
{
drawables[i].FadeIn(200 + (i * 50));
drawables[i].FadeIn(100 + (i * 50));
}
});
});