diff --git a/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs b/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs index 7f56c3bbb1..39b7ffb387 100644 --- a/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs +++ b/osu.Game.Rulesets.Catch/UI/CatchPlayfield.cs @@ -35,10 +35,6 @@ public CatchPlayfield(BeatmapDifficulty difficulty, Func - { - RelativeSizeAxes = Axes.Both, - }, explodingFruitContainer = new Container { RelativeSizeAxes = Axes.Both, @@ -49,7 +45,11 @@ public CatchPlayfield(BeatmapDifficulty difficulty, Func + { + RelativeSizeAxes = Axes.Both, + }, }); } diff --git a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs index 5252ba294a..7c548f70d4 100644 --- a/osu.Game.Rulesets.Catch/UI/CatcherArea.cs +++ b/osu.Game.Rulesets.Catch/UI/CatcherArea.cs @@ -84,9 +84,9 @@ public void OnJudgement(DrawableCatchHitObject fruit, Judgement judgement) } } - protected override void Update() + protected override void UpdateAfterChildren() { - base.Update(); + base.UpdateAfterChildren(); var state = GetContainingInputManager().CurrentState as CatchFramedReplayInputHandler.CatchReplayState;