-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Retained Gizmo
s
#15473
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
Merged
alice-i-cecile
merged 36 commits into
bevyengine:main
from
tim-blackbird:prepare-retained-gizmos
Dec 4, 2024
Merged
Retained Gizmo
s
#15473
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
73c494e
weep
tim-blackbird 1108152
draw split
tim-blackbird e8cdfc9
weep
tim-blackbird 897d8b9
Merge branch 'retained-gizmos' into prepare-retained-gizmos
tim-blackbird cf2c6bc
chonky hurray
tim-blackbird 95109dc
ssip
tim-blackbird 1928322
doc fix
tim-blackbird 7101672
:l
tim-blackbird 6c2742c
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird e9e96ea
Update example
tim-blackbird 9234cdc
doc
tim-blackbird 19d4298
revert
tim-blackbird 85b6739
edit comment
tim-blackbird 0f20b42
Add `LineGizmoAsset::new()`
tim-blackbird 45b0976
nit
tim-blackbird add5f82
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird ac94ffc
retained render world port attempt
tim-blackbird 2543b26
I'm silly
tim-blackbird da0d2ae
Add `Transform` support
tim-blackbird 76a47d1
More fixes
tim-blackbird 14d626d
Fix docs
tim-blackbird 70b1b7b
Undelete
tim-blackbird f107e8b
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird 7ed86ae
fix merge
tim-blackbird 33fe13e
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird 7700685
Extract `MainEntity`
tim-blackbird fe1b824
Fix doc-example
tim-blackbird b08b2a0
Fix doc-example 🤞
tim-blackbird dbdb9ad
Rename
tim-blackbird da6931d
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird dee6a28
Clean up imports, fix doc-test
tim-blackbird 3342d8f
docs
tim-blackbird 11c713a
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird 6e4eba3
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird 3cd1d62
Merge branch 'main' of https://github.com/bevyengine/bevy into prepar…
tim-blackbird f97ad43
Import `require` proc macro
tim-blackbird 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
This shows an instance where the use of
DerefMut
can cause compilation errors.This issue of partial borrows is already a problem for the
Mut
returned by mutable query items for example. (Polonius pls 🙏)