Pixel-Composer/objects/textBox_slider/Create_0.gml

23 lines
307 B
Text
Raw Normal View History

2023-11-06 12:08:59 +01:00
/// @description
2023-12-05 09:51:24 +01:00
depth = -19999;
tb = noone;
2023-11-06 12:08:59 +01:00
2024-03-24 04:58:08 +01:00
def_val = 0;
cur_val = 0;
def_mx = 0;
def_my = 0;
prev_mx = 0;
function activate(defVal) {
def_val = defVal;
cur_val = defVal;
def_mx = mouse_mx;
def_my = mouse_my;
prev_mx = mouse_mx;
CURSOR_LOCK_X = mouse_mx;
CURSOR_LOCK_Y = mouse_my;
2023-11-06 12:08:59 +01:00
}