Pixel-Composer/objects/o_pie_menu/Create_0.gml

26 lines
394 B
Plaintext
Raw Normal View History

/// @description Insert description here
// You can write your code in this editor
2023-12-20 14:02:49 +01:00
#region data
depth = -9999;
menu_id = "";
menus = [];
pie_rad = ui(96);
hght = ui(36);
context = noone;
active = true;
anim_prog = 0;
2024-05-19 15:11:45 +02:00
mouse_tx = mouse_mx;
mouse_ty = mouse_my;
mouse_ta = 0.5;
2023-12-20 14:02:49 +01:00
function setMenu(menu) {
menus = menu;
}
HOVER = self;
FOCUS = self;
#endregion