diff options
Diffstat (limited to 'modules/fbx/config.py')
-rw-r--r-- | modules/fbx/config.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/fbx/config.py b/modules/fbx/config.py new file mode 100644 index 0000000000..78929800b3 --- /dev/null +++ b/modules/fbx/config.py @@ -0,0 +1,16 @@ +def can_build(env, platform): + return env["tools"] + + +def configure(env): + pass + + +def get_doc_classes(): + return [ + "EditorSceneImporterFBX", + ] + + +def get_doc_path(): + return "doc_classes" |