mirror of
https://github.com/godotengine/godot.git
synced 2024-12-21 10:25:24 +08:00
17 lines
210 B
Python
17 lines
210 B
Python
|
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"
|