mirror of
https://github.com/godotengine/godot
synced 2024-11-02 08:53:46 +00:00
16 lines
214 B
Python
16 lines
214 B
Python
def can_build(env, platform):
|
|
return not env["disable_3d"]
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"MobileVRInterface",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|