1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00

Simplify TaikoLegacyHitTarget container hierarchy

This commit is contained in:
Dean Herbert 2024-01-25 21:02:22 +09:00
parent 0c03326eaf
commit 5aa4235c3d
No known key found for this signature in database

View File

@ -17,12 +17,7 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Legacy
{ {
RelativeSizeAxes = Axes.Both; RelativeSizeAxes = Axes.Both;
InternalChild = new Container InternalChildren = new Drawable[]
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Children = new Drawable[]
{ {
new Sprite new Sprite
{ {
@ -40,7 +35,6 @@ namespace osu.Game.Rulesets.Taiko.Skinning.Legacy
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
}, },
}
}; };
} }
} }