add entities.get_all(...), .get_all_in_box(...), .get_all_in_radius(...)

This commit is contained in:
MihailRis
2024-07-17 14:51:55 +03:00
parent b499714d4b
commit 1eac343619
7 changed files with 100 additions and 0 deletions
+11
View File
@@ -111,5 +111,16 @@ return {
end
end
end
end,
get_all = function(uids)
if uids == nil then
return entities
else
local values = {}
for _, uid in ipairs(uids) do
values[uid] = entities[uid]
end
return values
end
end
}