mirror of
https://github.com/godotengine/godot
synced 2024-11-02 11:59:10 +00:00
26 lines
500 B
Python
26 lines
500 B
Python
def can_build(env, platform):
|
|
if platform in ("linuxbsd", "windows", "android"):
|
|
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",
|
|
"OpenXRHand",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|