Fix StackHeight changes not causing position updates

This commit is contained in:
smoogipoo
2018-10-03 17:06:18 +09:00
parent 7809ce9361
commit 1cd11a6e5b
2 changed files with 16 additions and 1 deletions

View File

@ -61,6 +61,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
Size = circle.DrawSize;
HitObject.PositionChanged += _ => Position = HitObject.StackedPosition;
HitObject.StackHeightChanged += _ => Position = HitObject.StackedPosition;
}
public override Color4 AccentColour