Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
make env look better
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamkob12 committed Nov 15, 2023
1 parent 3081c8b commit 2f827c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/chunk/chunk_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ impl ChunkQueue {
intensity: 0.5,
max: 0.7,
smoothing: 1.5,
apply_at_gen: true }),
apply_at_gen: true,
}),
)?;
Some((t, grid, cords))
});
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ fn main() {

// Resources
app

.insert_resource(ClearColor(Color::rgb(0.70, 0.95, 1.0)))
.init_resource::<BlockRegistry>()
.insert_resource(AmbientLight {
brightness: 0.75, color: Color::ANTIQUE_WHITE})
brightness: 1.25, color: Color::ANTIQUE_WHITE})
.insert_resource(CycleTimer(Timer::new(
bevy::utils::Duration::from_millis(50),
TimerMode::Repeating,)))
Expand Down

0 comments on commit 2f827c5

Please sign in to comment.