1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 04:02:59 +08:00

Fix catcher trails displayed in wrong place

This commit is contained in:
ekrctb 2021-07-19 20:13:31 +09:00
parent b88ee3c1a1
commit 879467961f

View File

@ -37,7 +37,11 @@ namespace osu.Game.Rulesets.Catch.UI
public CatchPlayfield(BeatmapDifficulty difficulty)
{
var trailContainer = new Container();
var trailContainer = new Container
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.TopLeft
};
var droppedObjectContainer = new DroppedObjectContainer();
Catcher = new Catcher(trailContainer, droppedObjectContainer, difficulty)