Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Rope goes through collider
#1
Hi.
I have two wheel, when I try to stretch rope between them, rope start to go through wheel(mesh collider) and finally just fall down.
I there any way to prevent this.
   
Reply
#2
(24-09-2020, 09:38 PM)Aento Wrote: Hi.
I have two wheel, when I try to stretch rope between them, rope start to go through wheel(mesh collider) and finally just fall down.
I there any way to prevent this.


This is inherent to the fact that Obi is a particle-based engine. If you overstretch the rope, gaps will open in between particles trough which any collider can pass. This is easy to visualize if you add a ObiParticleRenderer component to your rope.

Though using more substeps will improve behavior, there's no way to prevent this in all cases. You should not force the rope to stretch beyond its rest length (in the real world, the rope would break and fall anyway).
Reply