GE Lua Documentation

Press F to search!

getAllGroupIds

Definition


-- @/lua/ge/extensions/freeroam/bigMapPoiProvider.lua:88

-- Function to get all group IDs (active and inactive)
M.getAllGroupIds = function()
  local allGroups = {}
  for groupKey, _ in pairs(groupVisibilityState) do
    table.insert(allGroups, groupKey)
  end
  return allGroups
end

Callers