summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_preset.h
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2023-01-20 15:09:07 -0300
committerGeorge Marques <george@gmarqu.es>2023-01-20 15:09:07 -0300
commit7e5c2f945dbb17e01fb6d1b6215ba4f176232785 (patch)
treeb0a5bdd077e8caab4c073650ff75fee6a3234700 /editor/export/editor_export_preset.h
parent9f74f0f6c5e5c98b18f4f0ad95092a88d064f616 (diff)
downloadredot-engine-7e5c2f945dbb17e01fb6d1b6215ba4f176232785.tar.gz
Remove references to compiled GDScript in export
This feature was removed from GDScript so it should not be present on the interface nor in the saved export presets.
Diffstat (limited to 'editor/export/editor_export_preset.h')
-rw-r--r--editor/export/editor_export_preset.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/editor/export/editor_export_preset.h b/editor/export/editor_export_preset.h
index 2055416d4b..de208f410e 100644
--- a/editor/export/editor_export_preset.h
+++ b/editor/export/editor_export_preset.h
@@ -46,11 +46,6 @@ public:
EXCLUDE_SELECTED_RESOURCES,
};
- enum ScriptExportMode {
- MODE_SCRIPT_TEXT,
- MODE_SCRIPT_COMPILED,
- };
-
private:
Ref<EditorExportPlatform> platform;
ExportFilter export_filter = EXPORT_ALL_RESOURCES;
@@ -78,7 +73,6 @@ private:
bool enc_pck = false;
bool enc_directory = false;
- int script_mode = MODE_SCRIPT_COMPILED;
String script_key;
protected:
@@ -132,9 +126,6 @@ public:
void set_enc_directory(bool p_enabled);
bool get_enc_directory() const;
- void set_script_export_mode(int p_mode);
- int get_script_export_mode() const;
-
void set_script_encryption_key(const String &p_key);
String get_script_encryption_key() const;