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

Revert misordered drawable order

This will completely change the visual appearance of this control... not
sure why it was changed.
This commit is contained in:
Dean Herbert 2023-02-02 16:25:23 +09:00
parent eb62ba09aa
commit ffbaf453f8

View File

@ -77,13 +77,6 @@ namespace osu.Game.Rulesets.Taiko.UI
Origin = Anchor.BottomRight,
X = -2,
},
leftCentre = new DrumSegment(TaikoAction.LeftCentre)
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomRight,
X = -2,
Scale = new Vector2(centre_region),
},
rightRim = new DrumSegment(TaikoAction.RightCentre)
{
Anchor = Anchor.BottomCentre,
@ -91,6 +84,13 @@ namespace osu.Game.Rulesets.Taiko.UI
X = 2,
Rotation = 90,
},
leftCentre = new DrumSegment(TaikoAction.LeftCentre)
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomRight,
X = -2,
Scale = new Vector2(centre_region),
},
rightCentre = new DrumSegment(TaikoAction.RightRim)
{
Anchor = Anchor.BottomCentre,