flat inventory image for easy gate identification

This commit is contained in:
Kyle 2012-09-01 23:27:23 -07:00
parent 845c275121
commit b0142a7429
1 changed files with 6 additions and 5 deletions

View File

@ -37,15 +37,16 @@ for g in ipairs(gates) do gate = gates[g]
fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
}
tiles = "jeija_microcontroller_bottom.png^"..
"jeija_gate_"..onoff..".png^"..
"jeija_gate_"..gate..".png"
minetest.register_node(nodename, {
description = description,
paramtype = "light",
drawtype = "nodebox",
tiles = {
"jeija_microcontroller_bottom.png^"..
"jeija_gate_"..onoff..".png^"..
"jeija_gate_"..gate..".png",
},
tiles = {tiles},
inventory_image = tiles,
selection_box = node_box,
node_box = node_box,
walkable = true,