Skip to content

Commit

Permalink
FIX: Copy ambient color into fog color, not the other way around
Browse files Browse the repository at this point in the history
  • Loading branch information
magicaldave committed Dec 4, 2024
1 parent 205e1ae commit 973ed04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ fn main() -> Result<()> {
sunlight_color: [0, 0, 0, 0],
fog_density: atmosphere.fog_density,
fog_color: atmosphere.fog_color,
ambient_color: atmosphere.fog_color,
ambient_color: atmosphere.ambient_color,
})
}

Expand Down

0 comments on commit 973ed04

Please sign in to comment.