mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-11-16 23:30:37 +01:00
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:
parent
0051fe2ec6
commit
8cf3db8aae
|
@ -1946,6 +1946,11 @@ minetest.register_node("homedecor:desk_globe", {
|
||||||
sounds = default.node_sound_defaults(),
|
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", {
|
minetest.register_node("homedecor:wine_rack", {
|
||||||
description = "Wine Rack",
|
description = "Wine Rack",
|
||||||
drawtype = "mesh",
|
drawtype = "mesh",
|
||||||
|
@ -1955,6 +1960,8 @@ minetest.register_node("homedecor:wine_rack", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {choppy=2},
|
groups = {choppy=2},
|
||||||
|
selection_box = wine_cbox,
|
||||||
|
collision_box = wine_cbox,
|
||||||
sounds = default.node_sound_defaults(),
|
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 |
Loading…
Reference in New Issue
Block a user