在Lua的固定分钟内以秒为单位倒计时使用什么?

时间:2012-06-18 11:51:13

标签: lua corona

我正在尝试从Lua的1:00到0:00等固定时间进行倒计时。

我该怎么做?

1 个答案:

答案 0 :(得分: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