Minetest-WorldEditAdditions/worldeditadditions/utils/tables/table_contains.lua
Starbeamrainbowlabs f32d8588e0
Add Mesh & Face classes for #59
Together, these classes provide a way to represent a mesh of faces
generated from the Minetest world. This way, the generation of a mesh
can be abstracted away from any potential output file writers, thereby
allowing for multiple different output file formats to be supported.
2021-06-26 22:03:55 +01:00

19 lines
477 B
Lua

--- Looks to see whether a given table contains a given value.
-- @param tbl table The table to look in.
-- @param target any The target to look for.
-- @returns bool Whether the table contains the given target or not.
local function table_contains(tbl, target)
for key, value in ipairs(tbl) do
if value == target then return true end
end
return false
end
if worldeditadditions then
worldeditadditions.table_contains = table_contains
else
return table_contains
end