如何获取某个图像的当前Y并在if语句中使用它?电晕sdk

时间:2014-09-22 04:43:55

标签: lua corona

在我的游戏中玩家应该在它超出界限时死亡,我已经实现了物理,我想知道如何获得我的播放器的当前Y并在if语句中使用它像这样< / p>

  

如果player.y == display.contentHeight + 100则     结束游戏()   端

1 个答案:

答案 0 :(得分:2)

声明以下声明

h=display.contentHeight

因此创建一个Runtime eventlistener

local function RTListener(event)
     if player.y>h then
        endGame()
     end
 end
Runtime:addEventListener("Runtime",RTListener)

当玩家离开界限时,它将结束游戏..