mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Add async workflow.
This commit is contained in:
@ -107,7 +107,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
};
|
||||
}
|
||||
|
||||
public override void Load(BaseGame game)
|
||||
protected override void Load(BaseGame game)
|
||||
{
|
||||
base.Load(game);
|
||||
|
||||
@ -131,7 +131,11 @@ namespace osu.Game.Graphics.UserInterface
|
||||
stars.Add(star);
|
||||
starContainer.Add(star);
|
||||
}
|
||||
}
|
||||
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
// Animate initial state from zero.
|
||||
transformCount(0, Count);
|
||||
}
|
||||
|
Reference in New Issue
Block a user