1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-06-29 21:31:02 +02:00

use mesh node for inbox mailbox

This commit is contained in:
Vanessa Ezekowitz
2015-03-30 18:51:48 -04:00
parent 38318ef82b
commit e74b87bcb7
12 changed files with 289 additions and 12 deletions

View File

@ -14,21 +14,23 @@ minetest.register_craft({
}
})
local mb_cbox = {
type = "fixed",
fixed = { -5/16, -8/16, -8/16, 5/16, 2/16, 8/16 }
}
minetest.register_node("inbox:empty", {
paramtype = "light",
drawtype = "nodebox",
node_box = {
type = "fixed",
fixed = {
{-4/12, -6/12, -6/12, 4/12, 0/12, 6/12},
{-3/12, 0/12, -6/12, 3/12, 2/12, 6/12},
{3/12, 0/12, -4/12, 4/12, 5/12, -2/12},
{3/12, 3/12, -2/12, 4/12, 5/12, 0/12}
}
},
drawtype = "mesh",
mesh = "inbox_mailbox.obj",
description = "Mailbox",
tiles = {"inbox_top.png", "inbox_bottom.png", "inbox_east.png",
"inbox_west.png", "inbox_back.png", "inbox_front.png"},
tiles = {
"inbox_red_metal.png",
"inbox_white_metal.png",
"inbox_grey_metal.png",
},
selection_box = mb_cbox,
collision_box = mb_cbox,
paramtype2 = "facedir",
groups = {choppy=2,oddly_breakable_by_hand=2},
sounds = default.node_sound_wood_defaults(),