在我使用 Gideros Studio 的游戏中,我有一个具有多个参数的函数。我想在一个参数上调用我的函数,然后在另一个参数上调用。这可能吗?
这是我的功能:
local function wiggleroom(a,b,c)
for i = 1,50 do
if a > b then
a = a - 1
elseif a < b then
a = a + 1
elseif a == b then
c = "correct"
end
return c
end
end
我想a
与 进行比较,但稍后b
调用该函数。例如:b
c
variable = (wiggleroom(variable, b, c) --if variable was defined earlier
variable2 = (wiggleroom(a, variable2, c)
variable3 = (wiggleroom(a, b, variable3)
我还希望能够将此函数用于多个对象(调用每个参数两次)。