Pixel-Composer/objects/_p_dialog/Destroy_0.gml

13 lines
288 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);
if(!passthrough) MOUSE_BLOCK = true;
2024-09-11 16:56:41 +07:00
if(window != noone && winwin_exists(window))
winwin_destroy(window);