I'm trying to get some simple user input but I can't seem to find any documentation about the Slider input type. By chance I found out that you can set a min and a max as further options.
But is there also a way to display the sliderValue?
Set the amount of ticks?
Numerical input?
Etcetera...
Example:
UI.getInputFromUser("Define intersection offset", {
type: UI.INPUT_TYPE.slider,
min: 0.05,
max: 1.0,
}, (err, intersectionOffset) => {
if (err) {
return
}
Thanks!