34 lines
673 B
Python
34 lines
673 B
Python
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",
|
|
"GLTFCollider",
|
|
"GLTFDocument",
|
|
"GLTFDocumentExtension",
|
|
"GLTFLight",
|
|
"GLTFMesh",
|
|
"GLTFNode",
|
|
"GLTFPhysicsBody",
|
|
"GLTFSkeleton",
|
|
"GLTFSkin",
|
|
"GLTFSpecGloss",
|
|
"GLTFState",
|
|
"GLTFTexture",
|
|
"GLTFTextureSampler",
|
|
"PackedSceneGLTF",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|