如何在Corona中执行sleep()或wait()?

时间:2012-05-13 09:05:07

标签: corona

我想暂停500毫秒的应用程序。我该怎么做?感谢。

2 个答案:

答案 0 :(得分:2)

您可以使用timer.performWithDelay()

答案 1 :(得分:1)

-- Sleeps for x milliseconds
function usleep(nMilliseconds)
    local nStartTime = system.getTimer()
    local nEndTime = nStartTime + nMilliseconds

    while true do 
        if system.getTimer() >= nEndTime then
            break
        end
    end
 end

这样可行:)