Pixel-Composer/objects/o_dialog_file_name_collection/Create_0.gml
2024-09-12 17:42:35 +07:00

48 lines
1.3 KiB
Plaintext

/// @description init
event_inherited();
#region data
dialog_w = ui(360);
dialog_h = ui(48);
dialog_w_expand = ui(480);
dialog_h_expand = ui(570);
draggable = true;
destroy_on_click_out = false;
meta = PROJECT.meta.clone();
meta_expand = false;
updating = noone;
update_note = "Updated";
onModify = -1;
node = noone;
data_path = "";
ugc = 0;
ugc_loading = false;
KEYBOARD_STRING = "";
tb_name = new textBox( TEXTBOX_INPUT.text, function(str) /*=>*/ { meta.name = filename_name_validate(str); });
t_desc = new textArea(TEXTBOX_INPUT.text, function(str) /*=>*/ { meta.description = str; });
t_auth = new textArea(TEXTBOX_INPUT.text, function(str) /*=>*/ { meta.author = str; });
t_cont = new textArea(TEXTBOX_INPUT.text, function(str) /*=>*/ { meta.contact = str; });
t_alias = new textArea(TEXTBOX_INPUT.text, function(str) /*=>*/ { meta.alias = str; });
t_update = new textArea(TEXTBOX_INPUT.text, function(str) /*=>*/ { update_note = str; });
t_tags = new textArrayBox(function() /*=>*/ {return meta.tags}, META_TAGS);
t_desc.auto_update = true;
t_auth.auto_update = true;
t_cont.auto_update = true;
t_alias.auto_update = true;
t_update.auto_update = true;
function doExpand() {
meta_expand = true;
dialog_w = dialog_w_expand;
dialog_h = dialog_h_expand;
}
#endregion