Compare commits

...

2 Commits

Author SHA1 Message Date
Simon (Darkside) Jackson 35b9985bf2
Merge pull request #472 from Kurante2801/release
Add SetXWithoutNotify and SetYWithoutNotify to BoxSlider
2024-04-21 23:38:01 +01:00
Kurante 05682c7dd9
Add SetXWithoutNotify and SetYWithoutNotify to BoxSlider
Adds functions to set the X and Y values without calling OnValueChanged
2024-04-19 18:07:33 +02:00
1 changed files with 9 additions and 0 deletions

View File

@ -367,5 +367,14 @@ namespace UnityEngine.UI.Extensions
eventData.useDragThreshold = false;
}
public void SetXWithoutNotify(float x)
{
SetX(x, false);
}
public void SetYWithoutNotify(float y)
{
SetY(y, false);
}
}
}