gpt4 book ai didi

lua - Corona SDK 中的倒计时

转载 作者:行者123 更新时间:2023-12-02 07:03:54 24 4
gpt4 key购买 nike

我正在尝试使用 Lua 在 Corona SDK 中创建计时器倒计时。我对编码很陌生,所以我从来没有设置过。任何想法我将如何去做这件事。

这是我目前所拥有的

infoBar = display.newImage('infoBar.png', 280)
score = display.newText('0', 65, -2, native.systemFontBold, 14)
score:setTextColor(0)
timeLeft = display.newText('20', 175, -2, native.systemFontBold, 14)
timeLeft:setTextColor(0)

最佳答案

这样就可以了...

local timeLimit = 20
timeLeft = display.newText(timeLimit, 160, 20, native.systemFontBold, 14)
timeLeft:setTextColor(255,0,0)

local function timerDown()
timeLimit = timeLimit-1
timeLeft.text = timeLimit
if(timeLimit==0)then
print("Time Out") -- or do your code for time out
end
end
timer.performWithDelay(1000,timerDown,timeLimit)

关于lua - Corona SDK 中的倒计时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15527601/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com