Obi Official Forum
Help Obi bone Collider issue - Printable Version

+- Obi Official Forum (https://obi.virtualmethodstudio.com/forum)
+-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html)
+--- Forum: Obi Rope (https://obi.virtualmethodstudio.com/forum/forum-4.html)
+--- Thread: Help Obi bone Collider issue (/thread-3575.html)



Obi bone Collider issue - Eivind Andvig - 31-08-2022

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


RE: Obi bone Collider issue - josemendez - 31-08-2022

(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,


RE: Obi bone Collider issue - Eivind Andvig - 13-09-2022

Thank you!