mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
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);
|
|
} |