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

Fade in headers but not difficulties by default.

This commit is contained in:
Dean Herbert 2016-11-25 12:48:41 +09:00
parent 12c74b1b0b
commit 35a02aa972
2 changed files with 6 additions and 1 deletions

View File

@ -71,6 +71,12 @@ namespace osu.Game.Beatmaps.Drawables
};
}
protected override void LoadComplete()
{
base.LoadComplete();
FadeInFromZero(250);
}
protected override void Selected()
{
base.Selected();

View File

@ -44,7 +44,6 @@ namespace osu.Game.Beatmaps.Drawables
{
base.LoadComplete();
applyState();
FadeInFromZero(250);
}
private void applyState()