mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
35 lines
840 B
Python
35 lines
840 B
Python
def can_build(env, platform):
|
|
if platform in ("linuxbsd", "windows", "android", "macos"):
|
|
return env["openxr"] and not env["disable_3d"]
|
|
else:
|
|
# not supported on these platforms
|
|
return False
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"OpenXRInterface",
|
|
"OpenXRAction",
|
|
"OpenXRActionSet",
|
|
"OpenXRActionMap",
|
|
"OpenXRAPIExtension",
|
|
"OpenXRExtensionWrapperExtension",
|
|
"OpenXRInteractionProfile",
|
|
"OpenXRInteractionProfileMetadata",
|
|
"OpenXRIPBinding",
|
|
"OpenXRHand",
|
|
"OpenXRVisibilityMask",
|
|
"OpenXRCompositionLayer",
|
|
"OpenXRCompositionLayerQuad",
|
|
"OpenXRCompositionLayerCylinder",
|
|
"OpenXRCompositionLayerEquirect",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|