0

enter image description here

Both rigid bodies have mesh collisions.

1 Answers1

1

For this kind of shape (the zero) using convex hull seems to work better than using mesh.

From the manual page on collisions:

Convex Hull

A mesh-like surface encompassing (e.g. shrink-wrapped over) all vertices (best results with fewer vertices). A convex approximation of the object, which has good performance and stability.

Mesh

Mesh consisting of triangles only, allowing for more detailed interactions than convex hulls. Allows simulating concave objects, but is rather slow and unstable.

In your case, using convex hull stabilizes things much more.


Here is the difference between mesh and convex hull in your case:

Mesh:

enter image description here Convex Hull: enter image description here

Timaroberts
  • 12,395
  • 6
  • 39
  • 73