1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Expose minizip API to allow creating zips using scripts

Co-authored-by: Marcelo Fernandez <marcelofg55@gmail.com>
Co-authored-by: James Westman <flyingpimonster@gmail.commail>
Co-authored-by: MisterMX <mbxd12@web.de>

Signed-off-by: MisterMX <mbxd12@web.de>
This commit is contained in:
Marcelo Fernandez
2018-09-30 10:13:33 -03:00
committed by MisterMX
parent f8745f2f71
commit ea6cc3e260
11 changed files with 606 additions and 3 deletions

17
modules/zip/config.py Normal file
View File

@@ -0,0 +1,17 @@
def can_build(env, platform):
return env["minizip"]
def configure(env):
pass
def get_doc_classes():
return [
"ZIPReader",
"ZIPPacker",
]
def get_doc_path():
return "doc_classes"