diff options
author | George Marques <george@gmarqu.es> | 2024-01-26 14:49:31 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2024-02-08 11:20:07 -0300 |
commit | 72e5f8c31e9237a4581cf250aa9943a4290f4017 (patch) | |
tree | b7054c6531edaf067a7d45711d3c5af96df1bfc5 /modules/gdscript/gdscript.cpp | |
parent | b4d0a09f15c60c88bbf516d2f6dcdb451dcad9c7 (diff) | |
download | redot-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 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<uint8_t> &GDScript::get_binary_tokens_source() const { Vector<uint8_t> 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<StringName, GDScriptFunction *> &GDScript::debug_get_member_functions() const { |