我在我的游戏中使用触摸事件功能。在触摸图像时,它正在调用该函数,同时它必须删除该图像。请帮助我的朋友。
代码:
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 )