2020-12-21 15:39:32 +00:00
|
|
|
def can_build(env, platform):
|
2021-09-21 01:24:31 +00:00
|
|
|
return not env["disable_3d"]
|
2020-12-21 15:39:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
2021-03-18 13:44:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2021-12-14 05:34:18 +00:00
|
|
|
"EditorSceneFormatImporterBlend",
|
2021-12-14 05:34:18 +00:00
|
|
|
"EditorSceneFormatImporterFBX",
|
2021-12-14 05:34:18 +00:00
|
|
|
"EditorSceneFormatImporterGLTF",
|
2021-03-18 13:44:42 +00:00
|
|
|
"GLTFAccessor",
|
|
|
|
"GLTFAnimation",
|
|
|
|
"GLTFBufferView",
|
|
|
|
"GLTFCamera",
|
|
|
|
"GLTFDocument",
|
2021-12-14 05:34:18 +00:00
|
|
|
"GLTFDocumentExtension",
|
|
|
|
"GLTFDocumentExtensionConvertImporterMesh",
|
2021-03-18 13:44:42 +00:00
|
|
|
"GLTFLight",
|
|
|
|
"GLTFMesh",
|
|
|
|
"GLTFNode",
|
|
|
|
"GLTFSkeleton",
|
|
|
|
"GLTFSkin",
|
|
|
|
"GLTFSpecGloss",
|
|
|
|
"GLTFState",
|
|
|
|
"GLTFTexture",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|