Use stacked positions

This commit is contained in:
smoogipoo
2020-03-04 09:46:53 +09:00
parent 740eb9ff53
commit 5e218697c5
2 changed files with 48 additions and 2 deletions

View File

@ -104,8 +104,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
return;
}
Vector2 startPosition = osuStart.EndPosition;
Vector2 endPosition = osuEnd.Position;
Vector2 startPosition = osuStart.StackedEndPosition;
Vector2 endPosition = osuEnd.StackedPosition;
double endTime = osuEnd.StartTime;
Vector2 distanceVector = endPosition - startPosition;