Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Objective
The first release candidate for Bevy 0.16 has been released! We should migrate our main branch to it for early adopters, and to benefit from the various new features it introduces.
Solution
Migrate to Bevy 0.16.0-rc.1. Most changes were largely mechanical or minor cleanup, but some larger changes were also required.
The most notable change is that 0.16 removed the
HierarchyEvent
, so theAncestorMarkerPlugin
had to be reworked. It now uses only observers instead of also using some systems, which significantly simplifies code and makes things more robust and schedule-free.I also replaced some
HashSet<Entity>
types withEntityHashSet
andHashMap<Entity>
types withEntityHashMap
.Follow-Up
This is only a bare-bones migration to get Avian working with the Bevy 0.16 RC. We should take advantage of the new features!
Some ideas:
no_std
supportColliderParent
to a relationship-like immutableColliderOf
component driven by hooksMigration Guide
Avian now supports Bevy 0.16.
The
AncestorMarkerPlugin
no longer requires a schedule or system set.