Is it possible to turn off all collisions for one object except with just one other object? I.e. I want object A to only collide with object B and nothing else in the scene.
I'm looking for something like:
Physics.IgnoreCollision(objectA, all);
Physics.IgnoreCollision(objectA, objectB, false);
↧