Pixel-Composer/objects/o_dialog_drag_folder/Create_0.gml
2024-05-16 14:42:34 +07:00

17 lines
390 B
Plaintext

/// @description init
event_inherited();
#region data
destroy_on_click_out = true;
dialog_w = ui(290);
dialog_h = ui(188);
target = noone;
dir_paths = "";
dir_recursive = false;
dir_filter = ".png";
cb_recursive = new checkBox(function(val) { dir_recursive = !dir_recursive; });
tb_filter = new textBox(TEXTBOX_INPUT.text, function(str) { dir_filter = str; })
#endregion