Pixel-Composer/objects/o_dialog_menubox/Step_1.gml

14 lines
345 B
Plaintext
Raw Normal View History

2024-04-08 07:13:46 +02:00
/// @description Insert description here
event_inherited();
2022-11-01 03:06:03 +01:00
2024-09-11 11:56:41 +02:00
if(item_sel_submenu) {
if(!instance_exists(item_sel_submenu))
item_sel_submenu = noone;
exit;
2024-04-08 07:13:46 +02:00
}
2024-09-11 11:56:41 +02:00
var hov = point_in(mouse_raw_x, mouse_raw_y);
if(submenu) hov |= submenu.point_in(mouse_raw_x, mouse_raw_y);
2022-11-01 03:06:03 +01:00
2024-04-08 07:13:46 +02:00
_hovering_ch = hov;
2024-08-10 07:30:41 +02:00
if(!hov && mouse_press(mb_left)) instance_destroy();