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.
Notes:
bevy_egui
has some new guidelines for library authors. In the interest of making this PR as self-contained as possible, I didn't updatebevy_editor_pls
to satisfy these guidelines.single()
->single().unwrap()
andget_single()
->single()
instead of trying to remove the panics.FooSystems
, but I didn't make the change in this PR.Projection
component means that queries can no longer fragment on the type of projection an entity uses, so now those entities will instead be skipped by a guardlet-else
if they don't use orthographic projection.Testing:
cargo run --example breakout
compiled and ran, and pressing E toggled the editor UI.