Add basic taiko scroller implementation

This commit is contained in:
Dean Herbert
2020-04-30 17:38:37 +09:00
parent 42ce325c1f
commit 8955b98cbb
8 changed files with 115 additions and 0 deletions

View File

@ -50,6 +50,13 @@ namespace osu.Game.Rulesets.Taiko.UI
{
InternalChildren = new[]
{
new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.TaikoScroller), _ => Drawable.Empty())
{
Origin = Anchor.BottomLeft,
Anchor = Anchor.TopLeft,
RelativeSizeAxes = Axes.X,
Height = 100,
},
new SkinnableDrawable(new TaikoSkinComponent(TaikoSkinComponents.PlayfieldBackgroundRight), _ => new PlayfieldBackgroundRight()),
rightArea = new Container
{