03.08.2020, 06:44
grp.tag returns an array (Lua table) that can be iterated over using ipairs:
Code:
objs = grp.tag(tagname)
for _, obj in ipairs(objs) do
log(obj)
end