1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2025-07-17 23:30:35 +02:00

Switch potted flowers to mesh

with model changes by VanessaE
This commit is contained in:
kilbith
2015-04-06 20:02:43 +02:00
committed by Vanessa Ezekowitz
parent 8838dea6ab
commit 9d06642599
12 changed files with 516 additions and 7 deletions

View File

@ -241,18 +241,17 @@ for i in ipairs(flowers_list) do
minetest.register_node(":flowers:potted_"..flower, {
description = S("Potted "..flowerdesc),
drawtype = "plantlike",
tiles = { "flowers_potted_"..flower..".png" },
inventory_image = "flowers_potted_"..flower..".png",
wield_image = "flowers_potted_"..flower..".png",
drawtype = "mesh",
mesh = "flowers_potted.obj",
tiles = { "flowers_potted_"..flower..".png", "flowers_potted.png" },
sunlight_propagates = true,
paramtype = "light",
walkable = false,
groups = { snappy = 3,flammable=2 },
sounds = default.node_sound_leaves_defaults(),
groups = { snappy = 3, flammable=2 },
sounds = default.node_sound_glass_defaults(),
selection_box = {
type = "fixed",
fixed = { -0.25, -0.5, -0.25, 0.25, 0.5, 0.25 },
fixed = { -0.2, -0.5, -0.2, 0.2, 0.4, 0.2 },
},
})