Merge pull request #472 from Kurante2801/release
Add SetXWithoutNotify and SetYWithoutNotify to BoxSliderrelease
commit
35b9985bf2
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue