Add async workflow.

This commit is contained in:
Dean Herbert
2016-11-01 23:24:14 +09:00
parent b292387c6a
commit b86f308af6
48 changed files with 224 additions and 118 deletions

View File

@ -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);
}