diff options
author | Juan Linietsky <reduzio@gmail.com> | 2020-01-21 14:24:22 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2020-02-11 12:15:27 +0100 |
commit | ee1e89f8c0dc4659a2ed4b5afd5e7c1c596f7af1 (patch) | |
tree | 474fcea808580b5937b37d17f5feba741f8a0bb8 /servers/visual_server.cpp | |
parent | f8b5c5f0631ac629c00795b5f3f8775c32a0368b (diff) | |
download | redot-engine-ee1e89f8c0dc4659a2ed4b5afd5e7c1c596f7af1.tar.gz |
Modified rendering to use cluster instead of foward
Diffstat (limited to 'servers/visual_server.cpp')
-rw-r--r-- | servers/visual_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/visual_server.cpp b/servers/visual_server.cpp index 60ea292d8f..47e2d11af9 100644 --- a/servers/visual_server.cpp +++ b/servers/visual_server.cpp @@ -2302,7 +2302,7 @@ VisualServer::VisualServer() { GLOBAL_DEF("rendering/quality/gi_probes/anisotropic", false); GLOBAL_DEF("rendering/quality/gi_probes/quality", 1); - ProjectSettings::get_singleton()->set_custom_property_info("rendering/quality/gi_probes/quality", PropertyInfo(Variant::INT, "rendering/quality/gi_probes/quality", PROPERTY_HINT_ENUM, "Ultra-Low (1 cone, fastest),Medium (4 cones), High (6 cones, slowest)")); + ProjectSettings::get_singleton()->set_custom_property_info("rendering/quality/gi_probes/quality", PropertyInfo(Variant::INT, "rendering/quality/gi_probes/quality", PROPERTY_HINT_ENUM, "Ultra-Low (1 cone - fastest),Medium (4 cones), High (6 cones - slowest)")); GLOBAL_DEF("rendering/quality/shading/force_vertex_shading", false); GLOBAL_DEF("rendering/quality/shading/force_vertex_shading.mobile", true); |