当我尝试执行以下代码时,它给了我这个错误:
尝试索引字段“其他”(零值)
但我不知道为什么。
编码:
function onCollision(event)
if event.phase == "began" then
if event.other.star == "star" then
score = score + 1
elseif event.other.mine1 == "mine1" then
if jet.collided == false then
timer.cancel(tmr)
jet.collided = true
jet.bodyType = "static"
explode()
end
end
end
end
提前致谢 :)