1

我正在尝试从 Lua 中的 1:00 到 0:00 这样的固定分钟倒计时。

我怎样才能做到这一点?

4

1 回答 1

4

我假设您正在使用 Corona SDK。

Corona 提供了一种简单的方法

local time = 60
local function decreaseTime()
   time = time-1
   print(time)
end

timer.performWithDelay(1000,decreaseTime,60)

在这里阅读 http://developer.anscamobile.com/reference/index/timerperformwithdelay

于 2012-06-18T17:06:43.443 回答