From 6c74c8a311fe46478951fc61ab23278137ce55e4 Mon Sep 17 00:00:00 2001 From: Griffin <33357138+DGriffin91@users.noreply.github.com> Date: Tue, 24 Oct 2023 14:44:59 -0700 Subject: [PATCH] fix deferred example fog values (#10249) # Objective - Fixes https://github.com/bevyengine/bevy/issues/10248 ## Solution - Update fog color values matching the update to the values for [atmospheric_fog.rs](https://github.com/bevyengine/bevy/pull/10226/files#diff-d43c34c9cf52e7ee72b56f8c4fc99ed86e9a1ec2f83642b839c4e75e1dd24f87) in https://github.com/bevyengine/bevy/pull/10226 After this update: ![image](https://github.com/bevyengine/bevy/assets/33357138/5924f97d-e12b-496e-90fa-160d20b82a2e) --- examples/3d/deferred_rendering.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/3d/deferred_rendering.rs b/examples/3d/deferred_rendering.rs index 951f9b0f6c1ee..fc3117053ae9b 100644 --- a/examples/3d/deferred_rendering.rs +++ b/examples/3d/deferred_rendering.rs @@ -52,7 +52,7 @@ fn setup( ..default() }, FogSettings { - color: Color::rgba(0.05, 0.05, 0.05, 1.0), + color: Color::rgba(0.25, 0.25, 0.25, 1.0), falloff: FogFalloff::Linear { start: 1.0, end: 8.0,