触摸事件:触摸图像调用功能并删除图像

时间:2013-08-14 06:56:10

标签: lua

我在游戏中使用触摸事件功能。在触摸图像时,它正在调用该功能,同时它必须删除该图像。请帮助我的朋友。

代码:

local img=display.newImageRect("bingo.png",451,369)         
function img:touch( event )
if event.phase == "began" then

    newgame()
end
    return true
end 
img:addEventListener( "touch", img )

0 个答案:

没有答案