Pixel-Composer/objects/o_pie_menu/Create_0.gml

22 lines
331 B
Text
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;
function setMenu(menu) {
menus = menu;
}
HOVER = self;
FOCUS = self;
#endregion