mirror of
https://github.com/godotengine/godot.git
synced 2024-11-13 23:52:41 +00:00
21 lines
363 B
Python
21 lines
363 B
Python
|
def can_build(env, platform):
|
||
|
env.module_add_dependencies("fbx", ["gltf"])
|
||
|
return not env["disable_3d"]
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def get_doc_classes():
|
||
|
return [
|
||
|
"EditorSceneFormatImporterFBX2GLTF",
|
||
|
"EditorSceneFormatImporterUFBX",
|
||
|
"FBXDocument",
|
||
|
"FBXState",
|
||
|
]
|
||
|
|
||
|
|
||
|
def get_doc_path():
|
||
|
return "doc_classes"
|