在电晕中画出并擦(擦)线
我使用下面的代码画了一条线,
但如果手指触摸同一条线,我想删除该线。有什么想法吗?
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)
I used following code to draw a line
But i want to erase that line if finger touches on same line.. Any Idea?
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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的。使该线成为传感器,一旦用户触摸该线,就将其从组中删除或删除该对象。
Simple. Make the line a sensor and as soon as the user touches the line, remove it from the group or delete the object.