mirror of
https://github.com/godotengine/godot
synced 2024-11-02 12:55:22 +00:00
eac4c984df
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.
14 lines
259 B
Python
14 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"
|