diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-10-04 15:52:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 15:52:24 +0200 |
commit | 2a09e119864432b0074941eb7eba802c08faa72a (patch) | |
tree | c2b51794dadd76419315adf71108821940708af0 /modules/gltf/config.py | |
parent | 1a86c7ab134fc5c6db30ed0c9092353973febff7 (diff) | |
parent | 1463fc889b65524794f2f7d9cf661aa673d58e06 (diff) | |
download | redot-engine-2a09e119864432b0074941eb7eba802c08faa72a.tar.gz |
Merge pull request #52802 from V-Sekai/gltf-extensions
Diffstat (limited to 'modules/gltf/config.py')
-rw-r--r-- | modules/gltf/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/gltf/config.py b/modules/gltf/config.py index 52a97c93aa..a4736321fa 100644 --- a/modules/gltf/config.py +++ b/modules/gltf/config.py @@ -1,5 +1,5 @@ def can_build(env, platform): - return env["tools"] and not env["disable_3d"] + return not env["disable_3d"] def configure(env): @@ -22,6 +22,8 @@ def get_doc_classes(): "GLTFSpecGloss", "GLTFState", "GLTFTexture", + "GLTFDocumentExtension", + "GLTFDocumentExtensionConvertImporterMesh", ] |