mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
19 lines
473 B
Plaintext
19 lines
473 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 |= sHOVER && point_in_rectangle(mouse_mx, mouse_my, x0, y0, x1, y1);
|
|
}
|
|
|
|
if(mouse_press(mb_any, !hovering))
|
|
instance_destroy(self);
|
|
#endregion |