mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-25 22:46:19 +01:00
11 lines
No EOL
246 B
Text
11 lines
No EOL
246 B
Text
enum SLIDER_UPDATE {
|
|
realtime,
|
|
release,
|
|
none,
|
|
}
|
|
|
|
function slider(_min, _max, _step, _onModify = noone, _onRelease = noone) {
|
|
return new textBox( TEXTBOX_INPUT.number, _onModify )
|
|
.setSlideRange(_min, _max)
|
|
.setOnRelease(_onRelease);
|
|
} |