function score( e )
local score_txt = display.newText( e.count, 980, 60, Ariel , 43 )
timer.performWithDelay( 10, function() score_txt:removeSelf() end)
end
Counter = timer.performWithDelay( 10, score, 0 )
它不是真正的1/100秒 - 我检查了它。如果它是在几秒钟它是好的但是当它是一个借调它是迟到/为什么是这样?
问题是计时器延迟了。例如:当它达到10000时意味着100秒,但是我测量的时间和127秒已经过去了。日冕的计时器是不准确的?