1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 01:07:42 +08:00

Fix DrawableTaikoHitObject origins.

This commit is contained in:
smoogipooo 2017-03-28 16:38:58 +09:00
parent 28bde5eecd
commit d1f686b1a8

View File

@ -22,7 +22,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
: base(hitObject) : base(hitObject)
{ {
Anchor = Anchor.CentreLeft; Anchor = Anchor.CentreLeft;
Origin = Anchor.Centre; Origin = Anchor.CentreLeft;
RelativePositionAxes = Axes.X; RelativePositionAxes = Axes.X;
} }