Fixed a comment in the fixed timestep example (#2245)

Co-authored-by: Daniel Borges <daniel@manufacture43.com>
This commit is contained in:
Daniel Borges 2021-05-24 20:05:36 +00:00
parent 4b1d47da99
commit 5cccba5d21

View file

@ -13,7 +13,7 @@ fn main() {
.add_plugins(DefaultPlugins)
// this system will run once every update (it should match your screen's refresh rate)
.add_system(frame_update.system())
// add a new stage that runs every two seconds
// add a new stage that runs twice a second
.add_stage_after(
CoreStage::Update,
FixedUpdateStage,