Several shapes to the body #300
-
How is it possible, if possible, to tie several shapes to the body with an offset? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Use a It's also possible to make custom collidables like in the |
Beta Was this translation helpful? Give feedback.
Use a
Compound
orBigCompound
shape.BigCompound
has an acceleration structure, so if an acceleration structure is likely to reduce the number of bounding box tests needed compared to aCompound
, use it instead.It's also possible to make custom collidables like in the
VoxelCollidableDemo
, though I'd avoid that unless there's a strong reason to do it.