Merge pull request #18149 from ekrctb/fix-catch-editor-placement-not-shown-in-timeline

Fix catch editor juice stream and banana shower not shown in timeline while placement is waiting
This commit is contained in:
Dan Balasescu 2022-05-09 11:19:15 +09:00 committed by GitHub
commit 9512d591d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -18,6 +18,13 @@ namespace osu.Game.Rulesets.Catch.Edit.Blueprints
InternalChild = outline = new TimeSpanOutline();
}
protected override void LoadComplete()
{
base.LoadComplete();
BeginPlacement();
}
protected override void Update()
{
base.Update();

View File

@ -47,6 +47,8 @@ namespace osu.Game.Rulesets.Catch.Edit.Blueprints
base.LoadComplete();
inputManager = GetContainingInputManager();
BeginPlacement();
}
protected override bool OnMouseDown(MouseDownEvent e)