diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-01 21:04:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 21:04:07 +0200 |
commit | 23ce1dbfd590341cb9439bfd04fede3f70336d0a (patch) | |
tree | d21e64f34a8f075aed272dc879514b101f26ad17 /servers/rendering_server.cpp | |
parent | c55df5c016ee8f2a912581ca532ea23e543069f2 (diff) | |
parent | 8da3c739bff12a2c16ec2f7ff07336bd5d1c9035 (diff) |
Merge pull request #41668 from clayjohn/GLOW-HQ
Add high quality glow mode
Diffstat (limited to 'servers/rendering_server.cpp')
-rw-r--r-- | servers/rendering_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/rendering_server.cpp b/servers/rendering_server.cpp index 3b034da3aa..8f863a6fc8 100644 --- a/servers/rendering_server.cpp +++ b/servers/rendering_server.cpp @@ -2387,6 +2387,7 @@ RenderingServer::RenderingServer() { GLOBAL_DEF("rendering/quality/glow/upscale_mode", 1); ProjectSettings::get_singleton()->set_custom_property_info("rendering/quality/glow/upscale_mode", PropertyInfo(Variant::INT, "rendering/quality/glow/upscale_mode", PROPERTY_HINT_ENUM, "Linear (Fast),Bicubic (Slow)")); GLOBAL_DEF("rendering/quality/glow/upscale_mode.mobile", 0); + GLOBAL_DEF("rendering/quality/glow/use_high_quality", false); GLOBAL_DEF("rendering/quality/screen_space_reflection/roughness_quality", 1); ProjectSettings::get_singleton()->set_custom_property_info("rendering/quality/screen_space_reflection/roughness_quality", PropertyInfo(Variant::INT, "rendering/quality/screen_space_reflection/roughness_quality", PROPERTY_HINT_ENUM, "Disabled (Fastest),Low (Fast),Medium (Average),High (Slow)")); |