-
Notifications
You must be signed in to change notification settings - Fork 22
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 Bevy to 0.12 #61
Conversation
This branch works for me on bevy 0.12 👍 |
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.
Left a few suggestions and I will merge it and draft a new release.
Thanks! But why |
The root issue is described in this ticket: bevyengine/bevy#10377. Internally |
Oh, I get it, thanks for the explanation! |
Thank you a lot! |
@sphw this is odd, but when I trying
Do you have any idea why it might happen? |
I believe this problem is caused by using an outdated version of the derive macro crate. I think you first need to publish the derive macro crate, then bump the version in the primary crate. I've used this tool https://github.com/pksunkara/cargo-workspaces in the past to fix this issue, but that was years ago so I'm not sure it's still the best option. |
Oh, right, thank you! |
This PR updates the core plugin to Bevy 0.12.
Some examples are not compiling since they rely on thebevy_spectator
plugin, which hasn't been updated yet.UPDATE: I've now updated
bevy_spectator
to the latest version, and all the examples seem to build