mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fixed a comment in the fixed timestep example (#2245)
Co-authored-by: Daniel Borges <daniel@manufacture43.com>
This commit is contained in:
parent
4b1d47da99
commit
5cccba5d21
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue