Pixel-Composer/objects/o_dialog_add_image/Create_0.gml

17 lines
334 B
Plaintext

/// @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