Slider
- Base:
- USlider
- Type:
- UNSlider
- Header File:
- NexusUI/Public/Components/NSlider.h

An extension on the UMG USlider which adds functionality to set its value without broadcasting / triggering events. This is the workaround for the usual UMG behavior where setting a value re-fires the same handler the user is bound to — useful when you want to load a saved value without re-triggering the change logic that would normally re-save it.
UFunctions​
Set Value (No Broadcast)​
/**
* Set the value of the USlider without triggering exposed event bindings.
* @param NewValue The new value.
*/
void SetValue_NoBroadcast(const float NewValue);