change color
Some checks failed
Rust Checks / checks (push) Has been cancelled

This commit is contained in:
CoCo_Sol 2024-03-09 15:54:26 +01:00
parent cf40d203dd
commit 7b30879237
2 changed files with 2 additions and 2 deletions

View file

@ -18,5 +18,5 @@ fn main() {
} }
fn start_map(mut event: EventWriter<StartMapGeneration>) { fn start_map(mut event: EventWriter<StartMapGeneration>) {
event.send(StartMapGeneration{seed:0, radius:100}); event.send(StartMapGeneration{seed:10,radius:10});
} }

View file

@ -15,7 +15,7 @@ impl Plugin for RendererPlugin {
Update, Update,
render_map.run_if(in_state(crate::CurrentScene::Game)), render_map.run_if(in_state(crate::CurrentScene::Game)),
) )
.insert_resource(ClearColor(Color::rgb(0.25, 0.65, 0.8))); .insert_resource(ClearColor(Color::rgb_u8(129,212,250)));
} }
} }