1
0
mirror da https://github.com/D00Med/scifi_nodes.git synced 2025-10-18 17:55:28 +02:00
This commit is contained in:
BuckarooBanzay
2025-08-18 14:46:45 +02:00
parent 2eb5841472
commit 3a7ca33b1d
3 ha cambiato i file con 14 aggiunte e 0 eliminazioni

13
tiles.lua Normal file
Vedi File

@@ -0,0 +1,13 @@
for _, color in ipairs({"purple", "greenmetal", "bluemetal", "grey"}) do
minetest.register_node("scifi_nodes:" .. color .. "_tile", {
description = color .. " tile",
groups = {
cracky = 1
},
is_ground_content = false,
sounds = scifi_nodes.node_sound_metal_defaults(),
paramtype2 = "facedir",
use_texture_alpha = "blend",
tiles = {"scifi_nodes_" .. color .. ".png^scifi_nodes_truchet_tile.png"}
})
end