Merge pull request #472 from Kurante2801/release

Add SetXWithoutNotify and SetYWithoutNotify to BoxSlider
release
Simon (Darkside) Jackson 2024-04-21 23:38:01 +01:00 committed by GitHub
commit 35b9985bf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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);
}
}
}