-
Notifications
You must be signed in to change notification settings - Fork 36
Update to Bevy 0.17 #581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Bevy 0.17 #581
Conversation
5f5dbcb
to
cb1f9ea
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #581 +/- ##
==========================================
- Coverage 78.36% 78.30% -0.06%
==========================================
Files 57 56 -1
Lines 3235 3240 +5
==========================================
+ Hits 2535 2537 +2
- Misses 700 703 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
For details see bevyengine/bevy#19121 bevyengine/bevy#18704 The niche is now in the index, which makes the compression logic even simpler.
- State now initialized separately. - Updating archetype access no longer needed. - `new_archetype` no longer exists and archetype cache needs to be updated in `get_param`. - `ReplicationRules` resource no longer need to be cloned. For details see bevyengine/bevy#16885 bevyengine/bevy#19143
- Messages and events work, but `trigger_targets` does nothing. - Updated naming across the project, except in the `event` modules. Remote events and messages require re-architecture. We no longer need to buffer events or use custom methods to trigger them. That's why the naming in `event` remains unchanged, with several TODOs left in place.
We no longer need custom sed/de to additionally serialize targets. This allows us to express things a bit nicer using conversion traits.
No other type or variable name changes.
No type or variable name changes.
Fits better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nits, can merge once fixed
Co-authored-by: UkoeHB <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
I put each logical change into a separate commit. I'd recommend to review them separately.
Some of them are just incremental module renames to make it easier to review "event" -> "message" and "trigger" -> "event" types of rename.