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.
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
Document every public item in
bevy_ecs
#8731Document every public item in
bevy_ecs
#8731Changes from 55 commits
cba8a45
eb3e2e7
28ba325
b532943
0f647af
210bbb0
e82f1ef
efb8eb9
34eeb15
3978b66
4c3f980
8f1481f
85ee513
6ab8119
bb8d299
a9cd743
0895efd
aa194f6
3875e1a
da6683d
7421b1e
e03a0fd
eead342
e37bffd
c97c067
a29c867
14ed693
206b7f5
5e0f339
578c3ca
3f64496
3a43ebb
c15e992
edf776e
2c2bb08
35db910
5ea50f2
07d73ff
2ec8f7c
d511301
b34abc3
94ed960
3fd9d3d
4364e08
912c737
86d747a
ca47a6a
cc3c824
6ffa2c9
96099b8
d3f847c
012c1fe
3d0ab51
c68f9dc
31b5021
8c6ada9
a23d102
9faf035
8b7d4e7
5213b1c
39ac5c7
5aa7b0f
94b3a2d
e5c2284
ebc14e9
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
If I'm not mistaken, this is only relevant to
Resource
s right? Since you can't have non-send components.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.
Yes, resources are the only kind of component that can be
!Send
.ComponentInfo
doesn't make a distinction between resource-components and entity-components, though.