mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
/// @description init
|
|
event_inherited();
|
|
|
|
#region data
|
|
dialog_w = ui(360);
|
|
dialog_h = ui(64);
|
|
|
|
dialog_w_expand = ui(480);
|
|
dialog_h_expand = ui(570);
|
|
|
|
draggable = false;
|
|
|
|
destroy_on_click_out = true;
|
|
|
|
meta = METADATA.clone();
|
|
meta_expand = false;
|
|
updating = noone;
|
|
|
|
node = noone;
|
|
data_path = "";
|
|
|
|
ugc = 0;
|
|
ugc_loading = false;
|
|
//name = get_text("new_collection_placeholder", "New collection");
|
|
|
|
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_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;
|
|
|
|
function doExpand() {
|
|
meta_expand = true;
|
|
|
|
dialog_w = dialog_w_expand;
|
|
dialog_h = dialog_h_expand;
|
|
}
|
|
#endregion
|
|
|
|
#region text
|
|
onModify = -1;
|
|
tb_name = new textBox(TEXTBOX_INPUT.text, function(str) { meta.name = str; });
|
|
|
|
KEYBOARD_STRING = "";
|
|
#endregion |