mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
17 lines
379 B
Plaintext
17 lines
379 B
Plaintext
/// @description init
|
|
event_inherited();
|
|
|
|
#region data
|
|
destroy_on_click_out = true;
|
|
dialog_w = 290;
|
|
dialog_h = 188;
|
|
|
|
target = noone;
|
|
dir_paths = "";
|
|
dir_recursive = false;
|
|
dir_filter = "*";
|
|
|
|
cb_recursive = new checkBox(function(val) { dir_recursive = !dir_recursive; });
|
|
|
|
tb_filter = new textBox(TEXTBOX_INPUT.text, function(str) { dir_filter = str; })
|
|
#endregion |