diff options
Diffstat (limited to 'modules/gltf/config.py')
-rw-r--r-- | modules/gltf/config.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/gltf/config.py b/modules/gltf/config.py index a4ee871eff..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,7 +22,8 @@ def get_doc_classes(): "GLTFSpecGloss", "GLTFState", "GLTFTexture", - "PackedSceneGLTF", + "GLTFDocumentExtension", + "GLTFDocumentExtensionConvertImporterMesh", ] |