1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

-Lightmap and lightmap capture support for GLES2

-Added hint to not show some properties when running on low end gfx
This commit is contained in:
Juan Linietsky
2018-09-28 20:32:40 -03:00
parent 4db2db2d6b
commit c83742ba86
19 changed files with 295 additions and 59 deletions

View File

@@ -189,6 +189,9 @@ void VisualServerRaster::call_set_use_vsync(bool p_enable) {
OS::get_singleton()->_set_use_vsync(p_enable);
}
bool VisualServerRaster::is_low_end() const {
return VSG::rasterizer->is_low_end();
}
VisualServerRaster::VisualServerRaster() {
VSG::canvas = memnew(VisualServerCanvas);