Skip to content

Commit

Permalink
More links for Bevy 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile committed Feb 11, 2022
1 parent 7acb5b6 commit 7088c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/news/2021-04-06-bevy-0.5/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ You may have noticed that **Bevy 0.5 (Table)** is also _way_ faster than **Bevy
3. Incrementally build up state
* When new archetypes are added, we only process the new archetypes (no need to rebuild state for old archetypes)

As a result, the direct `World` query api now looks like this:
As a result, the direct [`World`] query api now looks like this:

```rust
let mut query = world.query::<(&A, &mut B)>();
Expand All @@ -173,7 +173,7 @@ for (a, mut b) in query.iter_mut(&mut world) {

However for systems this is a non-breaking change. Query state management is done internally by the relevant [`SystemParam`].

We have achieved some pretty significant performance wins as a result of the new Query system.
We have achieved some pretty significant performance wins as a result of the new [`Query`] system.

[`World`]: https://docs.rs/bevy/0.5.0/bevy/ecs/world/struct.World.html
[`SystemParam`]: https://docs.rs/bevy/0.5.0/bevy/ecs/system/derive.SystemParam.html
Expand Down

0 comments on commit 7088c5d

Please sign in to comment.