Pixel-Composer/objects/o_dialog_gradient/Step_1.gml

11 lines
316 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
if !ready exit;
#region destroy
2022-11-18 03:20:31 +01:00
if(selector.dropper_active) exit;
if(!point_in_rectangle(mouse_mx, mouse_my, dialog_x, dialog_y, dialog_x + dialog_w, dialog_y + dialog_h)) {
if(destroy_on_click_out && mouse_check_button_pressed(mb_left))
instance_destroy(self);
2022-01-13 05:24:03 +01:00
}
2022-11-18 03:20:31 +01:00
doDrag();
2022-01-13 05:24:03 +01:00
#endregion