summaryrefslogtreecommitdiffstats
path: root/editor/script_create_dialog.h
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2020-01-08 19:43:55 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2020-01-09 13:09:23 -0300
commit8708d44a507c4888e3143b910ebdcfc5739acc8f (patch)
tree7743fd53d0e33c89e17b5ab4d213de189edb2dc2 /editor/script_create_dialog.h
parente97e951741c5f1a5865e1b551edb184af6374999 (diff)
downloadredot-engine-8708d44a507c4888e3143b910ebdcfc5739acc8f.tar.gz
Add option to disable loading scripts in ScriptCreateDialog
Diffstat (limited to 'editor/script_create_dialog.h')
-rw-r--r--editor/script_create_dialog.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/script_create_dialog.h b/editor/script_create_dialog.h
index 91d6315a78..00f642fcf7 100644
--- a/editor/script_create_dialog.h
+++ b/editor/script_create_dialog.h
@@ -74,6 +74,7 @@ class ScriptCreateDialog : public ConfirmationDialog {
bool is_class_name_valid;
bool is_built_in;
bool built_in_enabled;
+ bool load_enabled;
int current_language;
int default_language;
bool re_check_path;
@@ -126,7 +127,7 @@ protected:
static void _bind_methods();
public:
- void config(const String &p_base_name, const String &p_base_path, bool p_built_in_enabled = true);
+ void config(const String &p_base_name, const String &p_base_path, bool p_built_in_enabled = true, bool p_load_enabled = true);
void set_inheritance_base_type(const String &p_base);
ScriptCreateDialog();
};