次のコードを実行しようとすると、次のエラーが表示されます。
フィールド 'other' (nil 値) のインデックスを作成しようとしています
しかし、理由はわかりません。
コード:
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
前もって感謝します :)