我读到 Corona Sdk 中的帧速率是 30 或 60。然而,在我的一段代码中,数字是用 enterframe 监听器写了 33 次的。请给我解释一下原因好吗?
 local start=os.time()
 local function countDown(event)
    if((os.time()-start)==3) then
            Runtime: removeEventListener("enterFrame", countDown)
    end
    print(os.time()-start)
 end
 Runtime:addEventListener("enterFrame", countDown)