Warp

Foreach.Warp(WarpFunction)

函数功能

对所有Warp传送点执行指定函数(WarpFunction)。

参数说明

返回值

执行成功的次数。 -1为参数错误。

WarpFunction(CharIndex)

参数说明

返回值

参考实例

-- 定义一个WarpFunction
function MyForeachWarp(CharIndex)
  print("MyForeachWarp: "..CharIndex.." called")
  return 0
end

Foreach.Warp(MyForeachWarp); -- 对所有Warp传送点批量执行WarpFunction