diff options
-rw-r--r-- | init.lua | 8 | ||||
-rw-r--r-- | nodes.lua | 12 | ||||
-rw-r--r-- | textures/bb_sign_wall_wood_blue_yellow.png | bin | 0 -> 154606 bytes |
3 files changed, 12 insertions, 8 deletions
@@ -1,11 +1,12 @@ dofile(minetest.get_modpath("billboard") .. "/nodes.lua") for i,n in ipairs(bb_boardlist) do - + + -- Register the Node minetest.register_node("billboard:bb_".. n[1].."_"..n[2].."_"..n[3], { description = "Billboard " ..n[1].."_"..n[2].."_"..n[3], drawtype = "signlike", - visual_scale = 3.0, + visual_scale = n[4], tiles = { "bb_"..n[1].."_"..n[2].."_"..n[3]..".png" }, @@ -23,7 +24,8 @@ for i,n in ipairs(bb_boardlist) do legacy_wallmounted = true, }) - + + -- Register the Recipe for the Node minetest.register_craft({ output = "billboard:bb_"..n[1].."_"..n[2].."_"..n[3], recipe = { @@ -1,7 +1,9 @@ bb_boardlist = { - - { "sign_wall_wood", "white", "white" }, - { "sign_wall_wood", "yellow", "yellow" }, - { "sign_wall_wood", "black", "yellow" }, - { "sign_wall_wood", "green", "blue" } + + -- { default:, wool:, wool:, visual_scale } + { "sign_wall_wood", "white", "white", 2.5 }, + { "sign_wall_wood", "yellow", "yellow", 3.0 }, + { "sign_wall_wood", "black", "yellow", 4.0 }, + { "sign_wall_wood", "green", "blue", 2.0 }, + { "sign_wall_wood", "blue", "yellow", 2.0 } } diff --git a/textures/bb_sign_wall_wood_blue_yellow.png b/textures/bb_sign_wall_wood_blue_yellow.png Binary files differnew file mode 100644 index 0000000..a6df1ba --- /dev/null +++ b/textures/bb_sign_wall_wood_blue_yellow.png |