我正在使用Corona SDK檢測碰撞。我沒有問題,檢測碰撞是否是廣場的左邊或右邊使用下面的代碼:檢測正方形的哪一側與碰撞檢測碰撞
if (event.other.x < displayObj.x)
碰撞代碼:
function box:collision(event)
if event.phase == "ended" then
if event.other.id and event.other.id == "c" then
--need to detect top collision
test = 1
end
如何檢測是否頂部廣場與某事相撞?
向我們展示你的'function onCollision(event)'的實現。現在我不明白爲什麼你不能使用'.y'。 – Ilya
把它放在你的問題! – Ilya