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)
This commit is contained in:
Griffin 2023-10-24 14:44:59 -07:00 committed by GitHub
parent 1bd7e5a8e6
commit 6c74c8a311
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,