Switcharoo to Gee Emm 2.3

This commit is contained in:
Rodrigo
2021-03-01 14:01:14 -06:00
parent e947b6838f
commit 518c2d3ead
2912 changed files with 7140 additions and 82048 deletions

View File

@@ -1,19 +1,23 @@
///lock_create(obj_id)
function lock_create(argument0) {
global.selecting = argument0;
global.selecting = argument0;
selected_set(argument0);
selected_set(argument0);
if (!instance_exists(obj_lock))
with (instance_create_depth(x, y, depth-1, obj_lock))
{
plus = button_create(0, 0, but.plus);
minus = button_create(0, 0, but.minus);
if (!instance_exists(obj_lock))
with (instance_create_depth(x, y, depth-1, obj_lock))
{
plus = button_create(0, 0, but.plus);
minus = button_create(0, 0, but.minus);
info = button_create(0, 0, but.info);
area = button_create(0, 0, but.area);
}
info = button_create(0, 0, but.info);
area = button_create(0, 0, but.area);
}
button_update_all();
button_update_all();
selected_output();
selected_output();
}