diff --git a/crates/bevy_pbr/src/render/pbr_functions.wgsl b/crates/bevy_pbr/src/render/pbr_functions.wgsl index d16317e6af29b..e74d5e894024a 100644 --- a/crates/bevy_pbr/src/render/pbr_functions.wgsl +++ b/crates/bevy_pbr/src/render/pbr_functions.wgsl @@ -585,7 +585,7 @@ fn apply_pbr_lighting( // Total light output_color = vec4( - view_bindings::view.exposure * (transmitted_light + direct_light + indirect_light + emissive_light), + (view_bindings::view.exposure * (transmitted_light + direct_light + indirect_light)) + emissive_light, output_color.a );