Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Did ObiCloth support 3rd party mesh collider script?
#1
https://assetstore.unity.com/packages/to...der-134833

This stuff can generate mesh collider in run-time.
So, did it compatible with obi cloth( obi collider )?
If yes, it's so wonderful to create accurate simulation.
Reply
#2
(11-03-2019, 03:48 PM)akuei2 Wrote: https://assetstore.unity.com/packages/to...der-134833

This stuff can generate mesh collider in run-time.
So, did it compatible with obi cloth( obi collider )?
If yes, it's so wonderful to create accurate simulation.

Hi,

No, Obi only supports built-in colliders. Support for third party collider implementations must be done on a per-case basis. It depends a lot on how the third-party collider implementation works.

Anyway if you were planning on using this for character clothing, the traditional approach to this (animation/simulation blending) is fully supported by Obi, and doesn't even need to perform collision detection in most cases. Using a mesh collider for character-cloth collision is extremely unrealiable (in addition to inefficient) due to tunneling, so it is generally a very bad idea unless you're using extremely small time steps.

See:
http://obi.virtualmethodstudio.com/tutor...thing.html
http://obi.virtualmethodstudio.com/tutor...aints.html
Reply