mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:43:31 +00:00
27 lines
563 B
Python
27 lines
563 B
Python
def can_build(env, platform):
|
|
if (
|
|
platform == "linuxbsd" or platform == "windows"
|
|
): # or platform == "android" -- temporarily disabled android support
|
|
return env["openxr"]
|
|
else:
|
|
# not supported on these platforms
|
|
return False
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"OpenXRInterface",
|
|
"OpenXRAction",
|
|
"OpenXRActionSet",
|
|
"OpenXRActionMap",
|
|
"OpenXRInteractionProfile",
|
|
"OpenXRIPBinding",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|