0
我試圖用計時器更改變量值時報告了問題。無法通過計時器更改值
其實我用下面的代碼來執行:
local counter = math.random(100, 350)
local function changeCounterValue()
counter = math.random(130, 170)
end
tmr = timer.performWithDelay(1500, changeCounterValue, 0)
,但它只是不工作?
什麼這讓與Android呢? –
Corona以Android和iOS爲目標,但這顯然是一個獨立於目標平臺的Corona/Lua問題。 – acj
對不起,我正在使用CORONA SDK開發我的應用程序 – luaLover