Detecting whether two objects are still touching?

I’m using physics. I can easily detect when two objects initially collide but I want to check at a later time to confirm that they are still touching. Is there an easy way to check this (post-collision) “touching” status?

Thanks!
[import]uid: 16901 topic_id: 15125 reply_id: 315125[/import]

On the collision you could do something like

[lua]if event.phase == “began” then
isTouching = true
elseif event.phase == “ended” then
isTouching = false[/lua]

Peach :slight_smile: [import]uid: 52491 topic_id: 15125 reply_id: 56011[/import]