better wine rack model

basically stacked the existing model 4x, scaled it down, and added more
bottles to fill the empty spaces.
This commit is contained in:
Vanessa Ezekowitz 2015-01-02 04:39:17 -05:00
parent 0051fe2ec6
commit 8cf3db8aae
3 changed files with 11528 additions and 2149 deletions

View File

@ -1946,6 +1946,11 @@ minetest.register_node("homedecor:desk_globe", {
sounds = default.node_sound_defaults(),
})
local wine_cbox = {
type = "fixed",
fixed = { -0.5, -0.5, -0.25, 0.5, 0.5, 0.5 }
}
minetest.register_node("homedecor:wine_rack", {
description = "Wine Rack",
drawtype = "mesh",
@ -1955,6 +1960,8 @@ minetest.register_node("homedecor:wine_rack", {
paramtype = "light",
paramtype2 = "facedir",
groups = {choppy=2},
selection_box = wine_cbox,
collision_box = wine_cbox,
sounds = default.node_sound_defaults(),
})

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB