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. --- modules/gdscript/gdscript.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/gdscript/gdscript.cpp') diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 551adcb320..7a576d5292 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -1066,7 +1066,7 @@ const Vector &GDScript::get_binary_tokens_source() const { Vector GDScript::get_as_binary_tokens() const { GDScriptTokenizerBuffer tokenizer; - return tokenizer.parse_code_string(source); + return tokenizer.parse_code_string(source, GDScriptTokenizerBuffer::COMPRESS_NONE); } const HashMap &GDScript::debug_get_member_functions() const { -- cgit v1.2.3