Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Rope going inside the table
#2
Hi,

You've checked "convex" in your MeshCollider but it's clearly concave as it has 3 holes, trough which the rope is passing.

Concave (non-convex) dynamic (non-kinematic) MeshColliders aren't supported by Unity, and by extension, not supported by Obi. Obi will attempt to consider it concave despite being marked as convex for more accurate collision detection, but it can't do magicĀ  Triste .

Quote:Concave colliders have some limitations: Concave Mesh colliders can only be static (that is, they have no physics body) or kinematic (they have a kinematic physics body).

The reason is very simple: concave colliders do not have any volume - they're paper-thin, only their surface generates collisions. Moving them around will make it extremely easy for other objects to pass trough them.

Solutions: either use a compound collider (that is, multiple primitive colliders) to approximate your shape, or use a distance field.

kind regards,
Reply


Messages In This Thread
Rope going inside the table - by kripa1415 - 19-06-2024, 06:55 AM
RE: Rope going inside the table - by josemendez - 19-06-2024, 08:01 AM
RE: Rope going inside the table - by kripa1415 - 19-06-2024, 09:35 AM
RE: Rope going inside the table - by kripa1415 - 20-06-2024, 12:02 PM