I have a robot that has the hierarchy of
root
|- hull
|- model
|-- primitive_n
|-- rigidbody
|-- collider
|-- Mesh
|--...
|- wheel
|- model
|-- primitive_n
|-- rigidbody
|-- collider
|-- Mesh
|--...
|- joint -> hull
- wheel2
|- ...
but im not sure how to get joints to work for it.
joint on wheel 1 and wheel 2 connect to the hull entity, but the joints do not work when I try them in bevy. Anyone with experience with this know how to get joints to work when they're not on the primtives of the rigid bodies directly?