mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Fix slider control point connections not being updated
This commit is contained in:
@ -20,7 +20,17 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
|
||||
|
||||
private readonly Path path;
|
||||
private readonly Slider slider;
|
||||
private readonly int controlPointIndex;
|
||||
private int controlPointIndex;
|
||||
|
||||
public int ControlPointIndex
|
||||
{
|
||||
get => controlPointIndex;
|
||||
set
|
||||
{
|
||||
controlPointIndex = value;
|
||||
updateConnectingPath();
|
||||
}
|
||||
}
|
||||
|
||||
private IBindable<Vector2> sliderPosition;
|
||||
private IBindable<int> pathVersion;
|
||||
|
Reference in New Issue
Block a user