godot/modules/mobile_vr/config.py
karroffel eac4c984df add GLES 2 renderer for 2D
This commit adds a new rendering backend, GLES2, and adds a
project setting to enable it.

Currently this backend can only be used on the X11 platform,
but integrating into other platforms is planned.
2018-03-01 15:12:30 +01:00

15 lines
259 B
Python

def can_build(platform):
# should probably change this to only be true on iOS and Android
return False
def configure(env):
pass
def get_doc_classes():
return [
"MobileVRInterface",
]
def get_doc_path():
return "doc_classes"