I need to check multiple times in one frame is object intersecting with anything. Yes, I could use bounds but then I should generate cube colliders for every object to deal with meshes with holes.
function OnCollisionStay()
{
Debug.Log(“It intersect!”);
if (collision.gameObject.tag == “ObjectTag1”){
Debug.Log(“ObjectTag1”);
}
}
Do you mean something like this?