From 72e5f8c31e9237a4581cf250aa9943a4290f4017 Mon Sep 17 00:00:00 2001 From: George Marques Date: Fri, 26 Jan 2024 14:49:31 -0300 Subject: 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. --- editor/export/editor_export_preset.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'editor/export/editor_export_preset.h') 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); -- cgit v1.2.3