Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Make softbody really bouncy.
#1
Is there a way to make a softbody really bouncy? I'm trying to make a ball bounce on a softbody and I want the ball to not lose velocity when it hits the rigidbody.
Reply
#2
(09-04-2019, 01:11 PM)hecali_aj Wrote: Is there a way to make a softbody really bouncy? I'm trying to make a ball bounce on a softbody and I want the ball to not lose velocity when it hits the rigidbody.

Hi,

Collisions in Obi are always perfectly inelastic (no restitution). So there's currently no built-in way to fake bounciness, the ball will (or won't) bounce on the softbody depending on its stiffness, just like in real life.

You could however plug into the collisions callback and apply restitution yourself. See:
http://obi.virtualmethodstudio.com/tutor...sions.html
Reply