1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-21 03:02:54 +08:00

Reduce length of fade-out when hiding beatmap panels

This commit is contained in:
Dean Herbert 2024-06-26 12:01:38 +09:00
parent 5d4509150b
commit e84daedbea
No known key found for this signature in database

View File

@ -144,9 +144,9 @@ namespace osu.Game.Screens.Select.Carousel
}
if (!Item.Visible)
this.FadeOut(300, Easing.OutQuint);
this.FadeOut(100, Easing.OutQuint);
else
this.FadeIn(250);
this.FadeIn(400, Easing.OutQuint);
}
protected virtual void Selected()