Number of current collisions
Is it possible to know how many actors are colliding/overlapping actor x at one time? For example, there are 2 actors overlapping actor x right this second. If another collides with actor x, then the total becomes 3. But if all leave, back to 0.
Comments
Have that for each actor, with each actor having its own attribute that switches between 1 and 0 depending if its close enough.
then you can check those attributes and however many are 1 you'll know how many or overlapping. So if 2 of the attributes are 1 and the other ones 0 you know 2 are overlapping. Not sure if thats the best way thats just off the top of my head as im running out the door.
You can also check to see if positions match up and tell that way