mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 23:17:25 +01:00
17 lines
334 B
Text
17 lines
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
|