godot/modules/mobile_vr/config.py

15 lines
259 B
Python
Raw Normal View History

def can_build(platform):
# should probably change this to only be true on iOS and Android
return False
def configure(env):
pass
2017-09-29 13:36:27 +02:00
def get_doc_classes():
return [
"MobileVRInterface",
]
2017-09-29 13:36:27 +02:00
def get_doc_path():
return "doc_classes"