1

我试图通过使用以下代码来增加 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)) -- 下拉

我怎样才能解决这个问题 ?

4

1 回答 1

3

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

于 2013-06-19T16:12:55.463 回答