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
1 changed files with 5 additions and 1 deletions

View File

@ -37,7 +37,11 @@ public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) =>
public CatchPlayfield(BeatmapDifficulty difficulty) public CatchPlayfield(BeatmapDifficulty difficulty)
{ {
var trailContainer = new Container(); var trailContainer = new Container
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.TopLeft
};
var droppedObjectContainer = new DroppedObjectContainer(); var droppedObjectContainer = new DroppedObjectContainer();
Catcher = new Catcher(trailContainer, droppedObjectContainer, difficulty) Catcher = new Catcher(trailContainer, droppedObjectContainer, difficulty)