summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_preset.h
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2024-01-26 14:49:31 -0300
committerGeorge Marques <george@gmarqu.es>2024-02-08 11:20:07 -0300
commit72e5f8c31e9237a4581cf250aa9943a4290f4017 (patch)
treeb7054c6531edaf067a7d45711d3c5af96df1bfc5 /editor/export/editor_export_preset.h
parentb4d0a09f15c60c88bbf516d2f6dcdb451dcad9c7 (diff)
downloadredot-engine-72e5f8c31e9237a4581cf250aa9943a4290f4017.tar.gz
GDScript: Enable compression on export
Besides the regular option to export GDScript as binary tokens, this also includes a compression option on top of it. The binary format needs to encode some information which generally makes it bigger than the source text. This option reduces that difference by using Zstandard compression on the buffer.
Diffstat (limited to 'editor/export/editor_export_preset.h')
-rw-r--r--editor/export/editor_export_preset.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/export/editor_export_preset.h b/editor/export/editor_export_preset.h
index c5f2a0ee79..effce48111 100644
--- a/editor/export/editor_export_preset.h
+++ b/editor/export/editor_export_preset.h
@@ -57,6 +57,7 @@ public:
enum ScriptExportMode {
MODE_SCRIPT_TEXT,
MODE_SCRIPT_BINARY_TOKENS,
+ MODE_SCRIPT_BINARY_TOKENS_COMPRESSED,
};
private:
@@ -89,7 +90,7 @@ private:
bool enc_directory = false;
String script_key;
- int script_mode = MODE_SCRIPT_BINARY_TOKENS;
+ int script_mode = MODE_SCRIPT_BINARY_TOKENS_COMPRESSED;
protected:
bool _set(const StringName &p_name, const Variant &p_value);