Skip to content

Commit

Permalink
Improve clarity and CTRL+F-ability of fixed timestep migration advice (
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile committed Mar 5, 2023
1 parent 993b72c commit 0c43352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/learn/book/migration-guides/0.9-0.10/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ The `FrameCount` resource was previously only updated when using the `bevy_rend

#### Multiple fixed timesteps

Apps may now only have one unified fixed timestep. If you were relying on this functionality, you should swap to using timers, via the `on_timer(MY_PERIOD)` run condition.
Apps may now only have one unified fixed timestep. If you were relying on multiple `FixedTimestep` run criteria with distinct periods, you should swap to using timers, via the `on_timer(MY_PERIOD)` or `on_fixed_timer(MY_PERIOD)` run conditions.

### [Pipelined Rendering](https://github.com/bevyengine/bevy/pull/6503)

Expand Down

0 comments on commit 0c43352

Please sign in to comment.