You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Documentation
update changelogs.
New Features
upgrade to Bevy 0.10.
make Entity::new() public.
This is important for use cases where you need to manually
serialize/load an entity ID.
make insert_stage_before/after() chainable.
add get_many_mut() method to CompMut.
This allows you to mutably borrow the component for multiple entities
at the same time, which was otherwise difficult, unsafe, or inefficient
to do previously.
Bug Fixes
change type bound for Res from Default to FromWorld.
export FromWorld publicly and make compatible with Res/ResMut system parameters.
fix returned component order in get_many_mut(). get_many_mut() was previously not returning the components
in the same order as the entities list.
New Features (BREAKING)
add from_world implementation similar to Bevy.
Allows resources to be added with either a Default implementation,
or a custom FromWorld implementation that allows them to derive their,
value from any other data currently in the world.
Commit Statistics
10 commits contributed to the release over the course of 126 calendar days.