diff options
Diffstat (limited to 'modules/gltf/config.py')
-rw-r--r-- | modules/gltf/config.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/gltf/config.py b/modules/gltf/config.py new file mode 100644 index 0000000000..52a97c93aa --- /dev/null +++ b/modules/gltf/config.py @@ -0,0 +1,29 @@ +def can_build(env, platform): + return env["tools"] and not env["disable_3d"] + + +def configure(env): + pass + + +def get_doc_classes(): + return [ + "EditorSceneImporterGLTF", + "GLTFAccessor", + "GLTFAnimation", + "GLTFBufferView", + "GLTFCamera", + "GLTFDocument", + "GLTFLight", + "GLTFMesh", + "GLTFNode", + "GLTFSkeleton", + "GLTFSkin", + "GLTFSpecGloss", + "GLTFState", + "GLTFTexture", + ] + + +def get_doc_path(): + return "doc_classes" |