如何将整个显示屏注册为事件侦听器?
问问题
2268 次
2 回答
3
创建 main.lua 并添加它。
function drawLine( event )
if(event.phase == "ended") then
line = display.newLine(event.xStart, event.yStart, event.x, event.y)
line:setColor(255,0,0)
line.width = 5
end
end
Runtime:addEventListener("touch", drawLine)
于 2011-03-21T15:20:26.147 回答
0
将事件侦听器添加到运行时
于 2011-04-06T15:41:30.100 回答