我正在创建一个对象,我希望它在我对其应用触摸事件时使其可拖动,如果用户触摸该对象超过 5 秒,则该对象不能作为可拖动对象工作,但我必须调用其他一些函数,之后我想清除计数器,以便在下次触摸后重新初始化......如何在电晕中实现它我正在尝试使用 Timer = os.time() 但无法获得完美的结果。请提出任何想法...谢谢
local function callfunc( event )
local phase = event.phase
if "began" == phase then
Timer = os.time()
if Timer>5 then
func1()
else
func2()
end
end
Runtime:addEventListener("touch",callfunc)