-
Notifications
You must be signed in to change notification settings - Fork 32
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
Bevy 0.15.0 support #341
Bevy 0.15.0 support #341
Conversation
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 a lot!
Left a few suggestions/questions.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #341 +/- ##
=======================================
Coverage 89.86% 89.86%
=======================================
Files 44 44
Lines 2486 2487 +1
=======================================
+ Hits 2234 2235 +1
Misses 252 252 ☔ View full report in Codecov by Sentry. |
Looks like it should be `PartialReflect` after all: bevyengine/bevy#7207
If someone needs it, it's better to utilize the required components since it's faster.
I disagree with not including It also permanently couples |
Good point, I will revert today after work. |
Co-authored-by: UkoeHB <[email protected]>
I merged with master, and created a branch were I tested merging with #359 as well. All the CI tests are passing: I also noticed that cargo-deny was failing and updated it to allow |
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.
Thank you a lot!
I think still merge it after #359, but you saved me a lot of time!
let component: Ptr<'w> = table | ||
.get_component(component_id, entity.table_row()) | ||
.unwrap_unchecked(); | ||
let ticks = table | ||
.get_ticks_unchecked(component_id, entity.table_row()) | ||
.unwrap_unchecked(); |
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.
Note to self: I made the fields public in bevyengine/bevy#16269, so it should be possible to create ComponentTicks
.
Migration to Bevy version 0.15.0-rc.2.
I'll update this PR once the 0.15.0 is out.