Pixel-Composer/objects/o_dialog_menubox/Step_1.gml
2022-11-01 09:06:03 +07:00

19 lines
481 B
Plaintext

/// @description
if !ready exit;
#region destroy
var hovering = false;
for( var i = 0; i < ds_list_size(children); i++ ) {
var ch = children[| i];
if(!instance_exists(ch)) continue;
var x0 = ch.dialog_x;
var x1 = ch.dialog_x + ch.dialog_w;
var y0 = ch.dialog_y;
var y1 = ch.dialog_y + ch.dialog_h;
hovering |= point_in_rectangle(mouse_mx, mouse_my, x0, y0, x1, y1);
}
if(!hovering && mouse_check_button_pressed(mb_left))
instance_destroy(self);
#endregion