mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
17 lines
334 B
Plaintext
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 |