diff options
-rw-r--r-- | init.lua | 45 | ||||
-rw-r--r-- | textures/bb_white.png | bin | 231769 -> 0 bytes | |||
-rw-r--r-- | textures/bb_yellow.png | bin | 254929 -> 0 bytes |
3 files changed, 24 insertions, 21 deletions
@@ -1,10 +1,12 @@ -minetest.register_node("billboard:bb_white", { - description = "Billboard white", +minetest.register_node("billboard:bb_white_white", { + description = "Billboard white_white", drawtype = "signlike", - visual_scale = 5, - tiles = {"bb_white.png"}, - inventory_image = "bb_white.png", - wield_image = "bb_white.png", + visual_scale = 3, + tiles = { + "bb_white_white.png" -- up + }, + inventory_image = "bb_white_white.png", + wield_image = "bb_white_white.png", wield_scale = {x=1, y=1, z=1}, paramtype = "light", paramtype2 = "wallmounted", @@ -21,21 +23,23 @@ minetest.register_node("billboard:bb_white", { }) minetest.register_craft({ - output = "billboard:bb_white", + output = "billboard:bb_white_white", recipe = { - {"group:stick", "group:stick"}, - {"default:sign_wall_wood", "wool:white"}, - {"group:stick", "group:stick"} + {"group:stick", "group:stick", "group:stick"}, + {"default:sign_wall_wood", "wool:white", "wool:white"}, + {"group:stick", "group:stick", "group:stick"} } }) -minetest.register_node("billboard:bb_yellow", { - description = "Billboard yellow", +minetest.register_node("billboard:bb_yellow_yellow", { + description = "Billboard yellow_yellow", drawtype = "signlike", - visual_scale = 5, - tiles = {"bb_yellow.png"}, - inventory_image = "bb_yellow.png", - wield_image = "bb_yellow.png", + visual_scale = 3, + tiles = { + "bb_yellow_yellow.png" -- up + }, + inventory_image = "bb_yellow_yellow.png", + wield_image = "bb_yellow_yellow.png", wield_scale = {x=1, y=1, z=1}, paramtype = "light", paramtype2 = "wallmounted", @@ -50,12 +54,11 @@ minetest.register_node("billboard:bb_yellow", { legacy_wallmounted = true, }) - minetest.register_craft({ - output = "billboard:bb_yellow", + output = "billboard:bb_yellow_yellow", recipe = { - {"group:stick", "group:stick"}, - {"default:sign_wall_wood", "wool:yellow"}, - {"group:stick", "group:stick"} + {"group:stick", "group:stick", "group:stick"}, + {"default:sign_wall_wood", "wool:yellow", "wool:yellow"}, + {"group:stick", "group:stick", "group:stick"} } }) diff --git a/textures/bb_white.png b/textures/bb_white.png Binary files differdeleted file mode 100644 index 37534d4..0000000 --- a/textures/bb_white.png +++ /dev/null diff --git a/textures/bb_yellow.png b/textures/bb_yellow.png Binary files differdeleted file mode 100644 index 9d49fef..0000000 --- a/textures/bb_yellow.png +++ /dev/null |