1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 16:47:46 +08:00

Fix using the incorrect position for the first point

This commit is contained in:
Dean Herbert 2023-11-21 13:05:31 +09:00
parent 314a7bf6f1
commit 0a5444d091
No known key found for this signature in database

View File

@ -180,7 +180,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders
return false;
bSplineBuilder.Clear();
bSplineBuilder.AddLinearPoint(ToLocalSpace(e.ScreenSpaceMousePosition) - HitObject.Position);
bSplineBuilder.AddLinearPoint(ToLocalSpace(e.ScreenSpaceMouseDownPosition) - HitObject.Position);
setState(SliderPlacementState.Drawing);
return true;
}