What is the point of bundles #5051
-
I don't quite understand what bundles are for. #[derive(Component)]
struct Object {
transform: Transform,
...
} |
Beta Was this translation helpful? Give feedback.
Answered by
alice-i-cecile
Jun 19, 2022
Replies: 1 comment 3 replies
-
Great question! There are two good reasons to use bundles + smaller components over a single large component:
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
haasal
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great question! There are two good reasons to use bundles + smaller components over a single large component:
AffectedByGravity
marker component + theTransform
component and …