Lua how to get the index of a nested table code example
Example: Lua how to get the index of a nested table
function findTL(tbl)
for key, data in pairs(tbl) do
if data.tl == tlSearch then
return key
end
end
end
local key = findTL(objects, 22)