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:
parent
314a7bf6f1
commit
0a5444d091
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user