How to put ragdoll in car?

Hello, ragdoll need to collide with interior (not fall through). Car mesh is deforming by move of vertices (colliders no, but I’am planning).

If your car doesn’t have a collider, there’s no way other objects (ragdoll or otherwise) will collide with it.

I mean that car have mesh collider, but I’am only move vertices (without changes on collider vertices). I dunno, how ragdoll be in interior.

Not sure I understand the problem. Just place the ragdoll inside the car?

Yes, but it impossible, because mesh collider in convex enabled is limited to 255 triangles (so, it not give free space in interior). Non-convex not allowed for dynamic object since Unity 5.

No need to use a single concave mesh collider for the car, you can use multiple convex ones. That’s the usual approach for most non-trivial dynamic shapes.

Awesome, I saw this in the “Universal Vehicle Controller”, but didn’t take it into account. Thanks for help!