mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-23 08:20:21 +01:00
allow placement of cobweb on a flat vertical surface also.
This commit is contained in:
parent
5c1b4de65a
commit
fdfaa42f4f
@ -40,6 +40,27 @@ minetest.register_node("homedecor:cobweb_centered", {
|
|||||||
drop = "homedecor:cobweb_corner"
|
drop = "homedecor:cobweb_corner"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("homedecor:cobweb_flat", {
|
||||||
|
description = "Cobweb",
|
||||||
|
drawtype = "nodebox",
|
||||||
|
tiles = { "homedecor_cobweb.png" },
|
||||||
|
inventory_image = "homedecor_cobweb_inv.png",
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
sunlight_propagates = true,
|
||||||
|
walkable = false,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -0.5, -0.5, 0.4, 0.5, 0.5, 0.5 }
|
||||||
|
},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -0.5, -0.5, 0.495, 0.5, 0.5, 0.495 }
|
||||||
|
},
|
||||||
|
groups = { snappy = 3, not_in_creative_inventory = 1 },
|
||||||
|
drop = "homedecor:cobweb_corner"
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("homedecor:cobweb_plantlike", {
|
minetest.register_node("homedecor:cobweb_plantlike", {
|
||||||
description = "Cobweb",
|
description = "Cobweb",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
@ -98,6 +119,21 @@ function homedecor.rotate_cobweb(pos)
|
|||||||
elseif iswall_zm and iswall_zp and not iswall_xm and not iswall_xp then
|
elseif iswall_zm and iswall_zp and not iswall_xm and not iswall_xp then
|
||||||
minetest.set_node(pos, {name = "homedecor:cobweb_centered", param2 = 1})
|
minetest.set_node(pos, {name = "homedecor:cobweb_centered", param2 = 1})
|
||||||
|
|
||||||
|
-- ok, there aren't any simple two-wall corners or opposing walls.
|
||||||
|
-- Are there any standalone walls?
|
||||||
|
|
||||||
|
elseif iswall_xm and not iswall_xp and not iswall_zm and not iswall_zp then
|
||||||
|
minetest.set_node(pos, {name = "homedecor:cobweb_flat", param2 = 3})
|
||||||
|
|
||||||
|
elseif iswall_xp and not iswall_xm and not iswall_zm and not iswall_zp then
|
||||||
|
minetest.set_node(pos, {name = "homedecor:cobweb_flat", param2 = 1})
|
||||||
|
|
||||||
|
elseif iswall_zm and not iswall_xm and not iswall_xp and not iswall_zp then
|
||||||
|
minetest.set_node(pos, {name = "homedecor:cobweb_flat", param2 = 2})
|
||||||
|
|
||||||
|
elseif iswall_zp and not iswall_xm and not iswall_xp and not iswall_zm then
|
||||||
|
minetest.set_node(pos, {name = "homedecor:cobweb_flat", param2 = 0})
|
||||||
|
|
||||||
-- if all else fails, place the plantlike version as a fallback.
|
-- if all else fails, place the plantlike version as a fallback.
|
||||||
|
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user