chore: Update to Bevy 0.10.

This commit is contained in:
Nolan Darilek 2023-03-06 15:45:06 -06:00
parent d2d6b9238a
commit 138e8d8b42
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy = { version = "0.9", default-features = false } bevy = { version = "0.10", default-features = false }
ctrlc = "3" ctrlc = "3"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]

View File

@ -76,6 +76,6 @@ impl Plugin for FullThrottlePlugin {
app.insert_resource(*self) app.insert_resource(*self)
.add_startup_system(setup) .add_startup_system(setup)
.add_system(focus_change) .add_system(focus_change)
.add_system_to_stage(CoreStage::PostUpdate, exit); .add_system(exit.in_base_set(CoreSet::PostUpdate));
} }
} }