mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-01 17:38:41 +00:00
Add a Way of checking for specific Feature with Lua Adds minetest.get_feature() and minetest.has_feature()
This commit is contained in:
parent
c824abd7b2
commit
a4183994a4
3 changed files with 34 additions and 0 deletions
28
builtin/features.lua
Normal file
28
builtin/features.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
-- Minetest: builtin/features.lua
|
||||
|
||||
minetest.features = {
|
||||
"glasslike_framed" = true,
|
||||
"nodebox_as_selectionbox" = true,
|
||||
"chat_send_player_param3" = true,
|
||||
"get_all_craft_recipes_works" = true,
|
||||
"use_texture_alpha" = true,
|
||||
}
|
||||
|
||||
function minetest.has_feature(arg)
|
||||
if type(arg) == "table" then
|
||||
missing_features = {}
|
||||
result = true
|
||||
for ft, _ in pairs(arg) do
|
||||
if not minetest.features[ftr] then
|
||||
missing_features[ftr] = true
|
||||
result = false
|
||||
end
|
||||
end
|
||||
return result, missing_features
|
||||
elseif type(arg) == "string" then
|
||||
if not minetest.features[arg] then
|
||||
return false, {[arg]=true}
|
||||
end
|
||||
return true, {}
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue