Pixel-Composer/objects/o_dialog_add_image/Create_0.gml
2025-01-09 14:28:19 +07:00

17 lines
No EOL
334 B
Text

/// @description init
event_inherited();
#region data
nodes = [
ALL_NODES[$ "Node_Image"],
ALL_NODES[$ "Node_Image_Sequence"],
ALL_NODES[$ "Node_Canvas"],
];
destroy_on_click_out = true;
dialog_w = ui(50 + 80 * array_length(nodes));
dialog_h = ui(176);
path = "";
function setPath(_path) { path = _path; }
#endregion