diff --git a/signs.lua b/signs.lua index ea5620c..afef33d 100644 --- a/signs.lua +++ b/signs.lua @@ -1236,7 +1236,7 @@ for _, onpole in ipairs({"", "_onpole"}) do cbox = street_signs.make_selection_boxes(9, 15, onpole, 0, 0, -1.25) minetest.register_node("street_signs:sign_ped_push_button_to_cross_r10_3a"..onpole, { - description = "R10-3a: Pedestrians, push button to cross", + description = "R10-3a: Pedestrians, push button to cross (pointing left)", paramtype = "light", sunlight_propagates = true, paramtype2 = "wallmounted", @@ -1257,6 +1257,28 @@ for _, onpole in ipairs({"", "_onpole"}) do drop = "street_signs:sign_ped_push_button_to_cross_r10_3a" }) + minetest.register_node("street_signs:sign_ped_push_button_to_cross_r10_3a_right"..onpole, { + description = "R10-3a: Pedestrians, push button to cross (pointing right)", + paramtype = "light", + sunlight_propagates = true, + paramtype2 = "wallmounted", + drawtype = "mesh", + node_box = cbox, + selection_box = cbox, + mesh = "street_signs_generic_sign_9x15"..onpole..".obj", + tiles = { "street_signs_ped_push_button_to_cross_r10_3a_right.png", + "street_signs_sign_edge.png", + pole_mount_tex + }, + inventory_image = "street_signs_ped_push_button_to_cross_r10_3a_right_inv.png", + wield_image = "street_signs_ped_push_button_to_cross_r10_3a_right_inv.png", + groups = {choppy=2, dig_immediate=2, not_in_creative_inventory = nci}, + default_color = "0", + after_place_node = street_signs.after_place_node, + on_rotate = on_rotate, + drop = "street_signs:sign_ped_push_button_to_cross_r10_3a_right" + }) + minetest.register_node("street_signs:sign_ped_push_button_to_cross_r10_3e"..onpole, { description = "R10-3e: Pedestrians, push button to cross (pointing right)", paramtype = "light", diff --git a/textures/street_signs_ped_push_button_to_cross_r10_3a_right.png b/textures/street_signs_ped_push_button_to_cross_r10_3a_right.png new file mode 100644 index 0000000..20caa26 Binary files /dev/null and b/textures/street_signs_ped_push_button_to_cross_r10_3a_right.png differ diff --git a/textures/street_signs_ped_push_button_to_cross_r10_3a_right_inv.png b/textures/street_signs_ped_push_button_to_cross_r10_3a_right_inv.png new file mode 100644 index 0000000..c7d4731 Binary files /dev/null and b/textures/street_signs_ped_push_button_to_cross_r10_3a_right_inv.png differ