if I understand correctly...
...that's one of the reasons I usually avoid using PhysX Collision operator, for complex collisions (with animated colliders), but instead, I just create another (separate) event with PhysX, for all objects that are meant to be colliders.
That separate event usually looks like this:
- Birth objects (pick objects that are meant to be colliders)
- Voronoi (if objects are concave)
- Object bind (pick objects that are meant to be colliders)
- PhysX Shape
- PhysX Switch (Kinematic)
Basically voronoi act here as "resolution", and the more you increase it, the more precise it will be.
I think Tyson itself mentioned somewhere, that PhysX collision, if collision object is animated, can lead to some bugs.
That's why I just recreate the whole collision stuff as separate PhysX event with kinematic in PhysX Switch.
If it's still breaking the chain, try increasing timesteps, or increase binding (if you use them).
...that's one of the reasons I usually avoid using PhysX Collision operator, for complex collisions (with animated colliders), but instead, I just create another (separate) event with PhysX, for all objects that are meant to be colliders.
That separate event usually looks like this:
- Birth objects (pick objects that are meant to be colliders)
- Voronoi (if objects are concave)
- Object bind (pick objects that are meant to be colliders)
- PhysX Shape
- PhysX Switch (Kinematic)
Basically voronoi act here as "resolution", and the more you increase it, the more precise it will be.
I think Tyson itself mentioned somewhere, that PhysX collision, if collision object is animated, can lead to some bugs.
That's why I just recreate the whole collision stuff as separate PhysX event with kinematic in PhysX Switch.
If it's still breaking the chain, try increasing timesteps, or increase binding (if you use them).