tyFlow Forum
PhysX Bind - but not between elements - Printable Version

+- tyFlow Forum (https://forum.tyflow.com)
+-- Forum: tyFlow Discussion (https://forum.tyflow.com/forum-1.html)
+--- Forum: General Discussion (https://forum.tyflow.com/forum-2.html)
+--- Thread: PhysX Bind - but not between elements (/thread-4179.html)



PhysX Bind - but not between elements - CLF73 - 03-23-2024

   

I have a few square tiles placed in a row.
I break them up with Voronoi into smaller pieces, and have them knocked down with a collision.

How do I make sure that the PhysX bind operator doesn't bind across the the individual tiles, and only bind within the tile (element)?
Thank you


RE: PhysX Bind - but not between elements - d4rk3lf - 03-23-2024

Few ways...
Here's one...
Add custom property above voronoi, with float Birth ID.
Then in the PhysX Bind, turn on clustering with that float value.

Attaching you quick example file... turn on and off clustering in the PhysX Bind, and you will see that it works.


RE: PhysX Bind - but not between elements - CLF73 - 03-24-2024

(03-23-2024, 10:30 AM)d4rk3lf Wrote: Few ways...
Here's one...
Add custom property above voronoi, with float Birth ID.
Then in the PhysX Bind, turn on clustering with that float value.

Attaching you quick example file... turn on and off clustering in the PhysX Bind, and you will see that it works.

Makes sense. 
Thank you for your reply.