You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a new slider with an onChange callback, the changed value is not provided to the callback function. This does work with a normal number input.
// logs the changed value
this.gui.addPanel()
.addGroup()
.addSubGroup()
.addNumberInput(obj, `value`, { onChange: (changedVal) => { console.log(changedVal) } })
When creating a new slider with an onChange callback, the changed value is not provided to the callback function. This does work with a normal number input.
Slider:
The text was updated successfully, but these errors were encountered: