Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  When I increase the speed of the emitter, the particles penetrate the object.
#1
Estrella 
Is there an item like "Collision Detection" in Rigidbody to counter this?
I've looked really hard in the documentation and on this forum, but there is nothing like it anywhere.
Reply
#2
(16-11-2021, 10:14 AM)kbtit Wrote: Is there an item like "Collision Detection" in Rigidbody to counter this?
I've looked really hard in the documentation and on this forum, but there is nothing like it anywhere.

Obi uses continuous collision detection by default, to deal with very fast-moving particles. This is a per-solver setting, so you can control its parameters in the ObiSolver component. See "Collision Margin", "Max Depenetration" and "Continuous Collision Detection" in the manual:
http://obi.virtualmethodstudio.com/manua...olver.html

There's a reference to this in the collisions page too, under "how it works":
http://obi.virtualmethodstudio.com/manua...sions.html


Also note certain collider types are more prone to tunneling that others. MeshColliders in particular are quite terrible at this, since they're paper-thin (no volume).
Reply
#3
thanks Corazón
Reply