Pixel-Composer/objects/_p_dialog/Destroy_0.gml

11 lines
217 B
Text
Raw Normal View History

2022-01-13 11:24:03 +07:00
/// @description init
2022-11-03 17:44:49 +07:00
if(sHOVER) HOVER = noone;
if(sFOCUS) setFocus(noone);
2022-01-13 11:24:03 +07:00
2023-01-17 14:11:55 +07:00
WIDGET_CURRENT = noone;
2023-02-28 15:43:01 +07:00
ds_list_remove(DIALOGS, self);
2024-01-16 20:08:57 +07:00
if(parent) array_remove(parent.children, id);
2024-03-14 20:35:19 +07:00
if(!passthrough)
MOUSE_BLOCK = true;