mirror of
https://github.com/minetest-mods/digtron.git
synced 2025-01-03 09:37:27 +01:00
add node_box definitions to fix inventory images
This commit is contained in:
parent
1224a34615
commit
a4b89dd762
@ -39,6 +39,12 @@ minetest.register_node("digtron:battery_holder", {
|
||||
sounds = digtron.metal_sounds,
|
||||
paramtype2= "facedir",
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
||||
},
|
||||
},
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
tiles = {
|
||||
|
@ -33,6 +33,12 @@ minetest.register_node("digtron:inventory", {
|
||||
sounds = digtron.metal_sounds,
|
||||
paramtype2= "facedir",
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
||||
},
|
||||
},
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
tiles = {
|
||||
@ -108,6 +114,12 @@ minetest.register_node("digtron:fuelstore", {
|
||||
sounds = digtron.metal_sounds,
|
||||
paramtype2= "facedir",
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
||||
},
|
||||
},
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
tiles = {
|
||||
@ -202,6 +214,12 @@ minetest.register_node("digtron:combined_storage", {
|
||||
sounds = digtron.metal_sounds,
|
||||
paramtype2= "facedir",
|
||||
drawtype = "nodebox",
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
||||
},
|
||||
},
|
||||
paramtype = "light",
|
||||
is_ground_content = false,
|
||||
tiles = {
|
||||
|
Loading…
Reference in New Issue
Block a user