1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:13:21 +08:00

Fix up breaking taiko changes

This commit is contained in:
smoogipoo 2018-03-16 16:09:51 +09:00
parent 7e7f8ed7a2
commit 20acc601bb
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
public DrawableBarLineMajor(BarLine barLine)
: base(barLine)
{
InternalChild = triangleContainer = new Container
AddInternal(triangleContainer = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
@ -51,7 +51,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
EdgeSmoothness = new Vector2(1),
}
}
};
});
Tracker.Alpha = 1f;
}

View File

@ -48,7 +48,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
{
FillMode = FillMode.Fit;
InternalChild = bodyContainer = new Container
AddInternal(bodyContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Depth = 1,
@ -111,7 +111,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
}
}
}
};
});
MainPiece.Add(symbol = new SwellSymbolPiece());
}