math.random意外符号错误

时间:2013-06-19 16:07:46

标签: lua corona

我试图通过使用以下代码来增加math.random:

testa = 100
testb = 150

badclouts:setLinearVelocity(0, math.random(.. testa, .. testb)) -- Drop down

local function speatTimer()
   testa = testa+1
   testb = testb+1
   --print("testa " .. testa)
   --print("testb " .. testb)
end
local mainTimer = timer.performWithDelay( 1000, speatTimer, 500 )

但是在 badclouts上出现'意外符号'错误:setLinearVelocity(0,math.random(.. testa,.. testb)) - 下拉

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:3)

只需在..的调用中删除badclouts:setLinearVelocity的两个实例。