diff options
Diffstat (limited to 'modules/fbx/config.py')
-rw-r--r-- | modules/fbx/config.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/fbx/config.py b/modules/fbx/config.py new file mode 100644 index 0000000000..95a4e75885 --- /dev/null +++ b/modules/fbx/config.py @@ -0,0 +1,20 @@ +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" |