Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Obi bone Collider issue
#1
Hi, 

I'm working on a game project in Unity where we want to use obi bone on a character with braids.

in our setup on the character I have the Obi Solver on the chest bone with the Obi fixed updater. Under the chest bone I have a empty game object with with a Rigidbody component, capsule collider, Obi Collider and Obi rigidbody.

Finally on the hair bones that we want to use I have on the top root hair bone a capsule collider, obi bone, Obi collider, rigidbody and Obi rigidbody. Down the bone chain from that setup I use capsule colliders and obi colliders.

The issue I'm having is that the only way to get the hair to register and interact with the collider under the chest bone is to have a value on Max depenetration on the solver, if not it won't register the collider. 

I'm also wondering if this is the correct setup here since I was unsure about that. 

Sincerely Eivind
Reply
#2
(31-08-2022, 02:50 PM)Eivind Andvig Wrote: The issue I'm having is that the only way to get the hair to register and interact with the collider under the chest bone is to have a value on Max depenetration on the solver, if not it won't register the collider. 

Hi,

If you don't have a value on Max Depenetration (which I assume you mean its value is zero?) then particles are not allowed to react to colliders in any way, since their maximum depenentration velocity is zero: they are not allowed to change their velocity in response to penetrating a collider. Max Depenetration needs to be >0 for collision response to take place.

kind regards,
Reply
#3
Thank you!
Reply