1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 13:45:59 +08:00

Fix BeginPlacement location.

This commit is contained in:
ekrctb 2022-05-08 23:10:51 +09:00
parent 125628dd20
commit 483a611c41

View File

@ -18,13 +18,18 @@ namespace osu.Game.Rulesets.Catch.Edit.Blueprints
InternalChild = outline = new TimeSpanOutline(); InternalChild = outline = new TimeSpanOutline();
} }
protected override void LoadComplete()
{
base.LoadComplete();
BeginPlacement();
}
protected override void Update() protected override void Update()
{ {
base.Update(); base.Update();
outline.UpdateFrom(HitObjectContainer, HitObject); outline.UpdateFrom(HitObjectContainer, HitObject);
BeginPlacement();
} }
protected override bool OnMouseDown(MouseDownEvent e) protected override bool OnMouseDown(MouseDownEvent e)