-
Notifications
You must be signed in to change notification settings - Fork 7
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.13 #10
Conversation
- bevy: 0.12 -> 0.13 - Move material data from bind group 1 to 2 in asteroid example (as per https://bevyengine.org/news/bevy-0-13/#wgpu-0-19-upgrade-and-rendering-performance-improvements) - bevy_equi: 0.23 -> 0.25 - bevy_pancam: 0.10 -> 0.11 (waiting on bevy_pancam#56) Signed-off-by: Nullicorn <git@nullicorn.me>
Thanks for the fix and upgrade! I've merged the pancam pr now. I plan on doing releases on Thursday for most of my bevy crates |
bevy_pancam 0.11 is release now :) |
- Bevy 0.13 deprecated bevy_render::mesh::shape in favor of bevy_math::primitives - https://bevyengine.org/news/bevy-0-13/#primitive-shapes Signed-off-by: Nullicorn <git@nullicorn.me>
- bevy_pancam: 0.10 -> 0.11 - Now supports bevy 0.13 Signed-off-by: Nullicorn <git@nullicorn.me>
Alright, I've updated it in Cargo.toml + caught a deprecation warning I missed earlier. |
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.
Excellent, thanks!
@@ -10,19 +10,18 @@ repository = "https://github.com/johanhelsing/noisy_bevy" | |||
version = "0.5.0" |
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.
version = "0.6.0"
# bevy-inspector-egui = {version = "0.19.1", default-features = false} | ||
bevy_pancam = { version = "0.10", features = ["bevy_egui"] } | ||
bevy_egui = { version = "0.25", default-features = false, features = ["default_fonts"] } | ||
bevy_pancam = { version = "0.11", features = ["bevy_egui"] } | ||
insta = "1.21" |
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.
Can be safely upgrade to insta = "1.35"
Updates bevy, bevy_egui, and bevy_pancam dependencies for bevy 0.13.
Also fixes the asteroids example, whose shader was broken by bevy 0.13 rearranging bind groups.
Note: This is a draft because bevy_pancam doesn't yet support bevy 0.13, though bevy_pancam#56 will fix this. For the time being, I've swapped in that PR's github link for the bevy_pancam dependency.