1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 14:02:55 +08:00

Adjust fade duration to be slightly shorter

This commit is contained in:
Dean Herbert 2020-10-13 18:50:10 +09:00
parent 2346644c04
commit 834b0186f4

View File

@ -85,10 +85,7 @@ namespace osu.Game.Screens.Select.Carousel
mainFlow.DelayedLoadComplete += fadeContentIn;
}
private void fadeContentIn(Drawable d)
{
d.FadeInFromZero(1000, Easing.OutQuint);
}
private void fadeContentIn(Drawable d) => d.FadeInFromZero(750, Easing.OutQuint);
protected override void Deselected()
{