GE Lua Documentation

Press F to search!

getPool

Definition


-- @/lua/ge/extensions/core/vehicleActivePooling.lua:349

local function getPool(name)
  if not name then return end
  for _, pool in pairs(pools) do
    if pool.name == name then return pool end
  end
end

Callers