diff options
author | kobewi <kobewi4e@gmail.com> | 2021-11-04 02:34:35 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-11-04 02:34:35 +0100 |
commit | 64a2681cf0ff5a16c2efade06db174e4b6b64bd8 (patch) | |
tree | 3c8fb8104dae1bae46d60909233593db6434962a /editor/script_create_dialog.h | |
parent | 78931aa040bb0d0586345f95cc982605c0720ba1 (diff) | |
download | redot-engine-64a2681cf0ff5a16c2efade06db174e4b6b64bd8.tar.gz |
Allow to name built-in scripts upon creation
Diffstat (limited to 'editor/script_create_dialog.h')
-rw-r--r-- | editor/script_create_dialog.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/script_create_dialog.h b/editor/script_create_dialog.h index 7c2ef1e150..dba798eea7 100644 --- a/editor/script_create_dialog.h +++ b/editor/script_create_dialog.h @@ -57,6 +57,7 @@ class ScriptCreateDialog : public ConfirmationDialog { OptionButton *language_menu; OptionButton *template_menu; LineEdit *file_path; + LineEdit *internal_name; Button *path_button; EditorFileDialog *file_browse; CheckBox *internal; @@ -81,6 +82,9 @@ class ScriptCreateDialog : public ConfirmationDialog { int default_language; bool re_check_path; + Control *path_controls[2]; + Control *name_controls[2]; + enum ScriptOrigin { SCRIPT_ORIGIN_PROJECT, SCRIPT_ORIGIN_EDITOR, |