Pixel-Composer/objects/o_dialog_drag_folder/Create_0.gml

17 lines
390 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
/// @description init
event_inherited();
#region data
destroy_on_click_out = true;
2022-11-03 11:44:49 +01:00
dialog_w = ui(290);
dialog_h = ui(188);
2022-01-13 05:24:03 +01:00
target = noone;
dir_paths = "";
dir_recursive = false;
2024-05-16 09:42:34 +02:00
dir_filter = ".png";
2022-01-13 05:24:03 +01:00
cb_recursive = new checkBox(function(val) { dir_recursive = !dir_recursive; });
tb_filter = new textBox(TEXTBOX_INPUT.text, function(str) { dir_filter = str; })
#endregion