a
Some checks failed
Rust Checks / checks (push) Failing after 5s
Rust Checks / checks (pull_request) Failing after 5s

This commit is contained in:
CoCo_Sol 2024-03-03 00:46:28 +01:00
parent 7bc4fc1d50
commit 5751b0a6ec

View file

@ -16,7 +16,7 @@ pub struct RendererPlugin;
impl Plugin for RendererPlugin {
fn build(&self, app: &mut App) {
app.add_systems(
app.add_systems(Startup, init_resources_for_rendering).add_systems(
Update,
render_map.run_if(in_state(crate::CurrentScene::Game)),
);