对于普通的情况,可以这样使用:
local function abc()
log.info("timer","test")
end
sys.timerLoopStart(abc, 1000)
sys.timerStop(abc)
不过对于比较风骚的写法,需要这样处理:
local timerPt
timerPt = sys.timerLoopStart(function()
log.info("LoopTimer","test")
end, 1000)
sys.timerStop(timerPt)
如果觉得我的回答对您有用,请随意打赏。你的支持将鼓励我继续创作!