summaryrefslogtreecommitdiffstats
path: root/scene/resources/material.cpp
diff options
context:
space:
mode:
authorclayjohn <claynjohn@gmail.com>2023-01-13 14:02:46 -0800
committerclayjohn <claynjohn@gmail.com>2023-04-12 10:35:13 -0700
commit9be0a73294b377abbef316805abc26dfeab03fb3 (patch)
treeb966fd76bdf66d2d6635b8ad809bb902ff2d4b39 /scene/resources/material.cpp
parentd4dad2b2f88968ff329145f3dab5290478bae886 (diff)
downloadredot-engine-9be0a73294b377abbef316805abc26dfeab03fb3.tar.gz
Add EXPOSURE built in to spatial shaders
This allows users to restore light values to pre-pre-exposure amounts
Diffstat (limited to 'scene/resources/material.cpp')
-rw-r--r--scene/resources/material.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/material.cpp b/scene/resources/material.cpp
index 8e0e38152f..3deb1ccaab 100644
--- a/scene/resources/material.cpp
+++ b/scene/resources/material.cpp
@@ -1286,7 +1286,7 @@ void BaseMaterial3D::_update_shader() {
code += " vec2 ref_ofs = SCREEN_UV - ref_normal.xy * dot(texture(texture_refraction,base_uv),refraction_texture_channel) * refraction;\n";
}
code += " float ref_amount = 1.0 - albedo.a * albedo_tex.a;\n";
- code += " EMISSION += textureLod(screen_texture,ref_ofs,ROUGHNESS * 8.0).rgb * ref_amount;\n";
+ code += " EMISSION += textureLod(screen_texture,ref_ofs,ROUGHNESS * 8.0).rgb * ref_amount * EXPOSURE;\n";
code += " ALBEDO *= 1.0 - ref_amount;\n";
code += " ALPHA = 1.0;\n";