22
33An export plugin for stripping comments and "conditional compilation" of GDScript.
44
5- Compatible with Godot ** 4.2 .x** . Ready for production use. Please report if you find any bugs.
5+ Compatible with Godot ** 4.3 .x** . Ready for production use. Please report if you find any bugs.
66
77## How to use
88
@@ -14,6 +14,16 @@ The original scripts will not be changed, but in PCK/ZIP the scripts will be cha
1414Use ZIP to check to check the result. If any errors occurred during the export,
1515you will see them in the Output Log.
1616
17+ > [ !TIP]
18+ > Since 4.3, Godot supports exporting GDScript in binary mode out of the box. If your goal
19+ > is just to strip comments from the exported project, you may not need to use this plugin.
20+
21+ > [ !IMPORTANT]
22+ > If you are interested in features like conditional compilation and therefore want to use
23+ > this plugin, please note that it exports GDScript as text, regardless of the selected
24+ > export mode. But you should not lose much from this, the binary mode does not provide
25+ > significant obfuscation.
26+
1727## Settings
1828
1929You can change the settings in the Options tab of the Export dialog:
@@ -25,14 +35,12 @@ You can change the settings in the Options tab of the Export dialog:
2535
2636</details >
2737
28- ## Important note
29-
30- Each supported platform has certain standard feature tags (plus any custom tags you specify
31- in the export preset). However, there are some standard tags that are not known in advance.
32- See [ godotengine/godot #76990 ] ( https://github.com/godotengine/godot/issues/76990 ) and
33- [ godotengine/godot #76996 ] ( https://github.com/godotengine/godot/pull/76996 ) for details.
34-
35- You can specify a list of feature tags that will be treated as dynamic in the export options.
38+ > [ !NOTE]
39+ > Each supported platform has certain standard feature tags (plus any custom tags you specify
40+ > in the export preset). However, there are some standard tags that are not known in advance.
41+ > See [ godotengine/godot #76990 ] ( https://github.com/godotengine/godot/issues/76990 ) and
42+ > [ godotengine/godot #76996 ] ( https://github.com/godotengine/godot/pull/76996 ) for details.
43+ > You can specify a list of feature tags that will be treated as dynamic in the export options.
3644
3745## Features
3846
0 commit comments