Skip to content

Commit 6c74c8a

Browse files
authored
fix deferred example fog values (#10249)
# Objective - Fixes #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 #10226 After this update: ![image](https://github.com/bevyengine/bevy/assets/33357138/5924f97d-e12b-496e-90fa-160d20b82a2e)
1 parent 1bd7e5a commit 6c74c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/3d/deferred_rendering.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fn setup(
5252
..default()
5353
},
5454
FogSettings {
55-
color: Color::rgba(0.05, 0.05, 0.05, 1.0),
55+
color: Color::rgba(0.25, 0.25, 0.25, 1.0),
5656
falloff: FogFalloff::Linear {
5757
start: 1.0,
5858
end: 8.0,

0 commit comments

Comments
 (0)