-
Notifications
You must be signed in to change notification settings - Fork 256
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.15 #309
Merged
Merged
Update to bevy 0.15 #309
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
9edc10c
update to bevy main (9386bd0)
Vrixyz 3be113b
use git dependency for bevy
Vrixyz eabb701
fix unfinished doc comment
Vrixyz cb4a6b7
use RenderEntity and MainEntity
Vrixyz 33004c1
Merge remote-tracking branch 'upstream' into bevy_rc
Vrixyz 2e825e1
fix render entity
Vrixyz 01e3042
Merge remote-tracking branch 'upstream' into bevy_main
Vrixyz 8a3a4d4
Merge branch 'bevy_main' into bevy_rc
Vrixyz a5d827e
fix examples compiling
Vrixyz d096ac8
bunch of warns that should be removed + fixed ui rendering :D
Vrixyz ac5b038
cleaner cursor handling
Vrixyz 4237f64
up bevy rc to rc3
Vrixyz d79710a
removed a bunch of debug logs
Vrixyz 2530bb7
Merge branch 'main' into bevy_main
Vrixyz f048ecd
Fix Android CI
vladbat00 df4a7a4
Fix the check workflow for Android
vladbat00 5c74c66
Update Bevy to 0.15
vladbat00 4e4b878
Fix wasm deprecation warning
vladbat00 517447a
Bump web-sys version
vladbat00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Unfinished comment
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 for pointing that out!
It's part of an actually a non trivial change: The handling of the cursor is changed in bevy 0.15 ; in this PR I moved the initialization of the cursor to the user through
configure_cursor
:https://github.com/mvlabat/bevy_egui/blob/3be113b82f8b7122b33f92467d20d2560e0d7722/examples/ui.rs#L56-L60
But I think this code snippet should live with bevy_egui (or bevy_something 🤔 ; but in the meantime we should be able to add it if not present.)