turning off collisions in jit.phys.multiple

hthaw's icon

is there any way to turn off the collision detection among objects in jit.phys.multiple, so that they would potentially pass through each other? i'd still like them to be responsive to gravity, if possible..

-ht

Rob Ramirez's icon

sure, you have to change the default value of the phys.multiple @filters attribute.
this attribute takes a list of @filterclass values, as well as some builtin options.

the default value is "all", which tells each instance to collide with everything.
by changing that to something like @filters worldbox, you tell the instances to only collide with the worldbox.

hthaw's icon

amazing! thanks!