summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-25 23:02:26 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-25 23:02:26 -0400
commit514a4421ffca5c9b585fdce7d82c7e24ef9fd18d (patch)
tree5829d183c4f3c02d0936c66c6eb6478abd6c997c
parent0ed24f1d6a37692804f44ce13d0dbd3afd2bef8d (diff)
downloaddreambuilder_modpack-514a4421ffca5c9b585fdce7d82c7e24ef9fd18d.tar
dreambuilder_modpack-514a4421ffca5c9b585fdce7d82c7e24ef9fd18d.tar.gz
dreambuilder_modpack-514a4421ffca5c9b585fdce7d82c7e24ef9fd18d.tar.bz2
dreambuilder_modpack-514a4421ffca5c9b585fdce7d82c7e24ef9fd18d.tar.xz
dreambuilder_modpack-514a4421ffca5c9b585fdce7d82c7e24ef9fd18d.zip
update signs_lib and street signs
-rw-r--r--signs_lib/textures/signs_orange_front.pngbin170 -> 132 bytes
-rw-r--r--signs_lib/textures/signs_orange_inv.pngbin141 -> 106 bytes
-rw-r--r--street_signs/init.lua96
-rw-r--r--street_signs/textures/street_signs_highway_large_orange.pngbin0 -> 347 bytes
-rw-r--r--street_signs/textures/street_signs_highway_large_orange_inv.pngbin0 -> 1391 bytes
-rw-r--r--street_signs/textures/street_signs_highway_medium_orange.pngbin0 -> 295 bytes
-rw-r--r--street_signs/textures/street_signs_highway_medium_orange_inv.pngbin0 -> 1614 bytes
-rw-r--r--street_signs/textures/street_signs_highway_small_orange.pngbin0 -> 243 bytes
-rw-r--r--street_signs/textures/street_signs_highway_small_orange_inv.pngbin0 -> 1175 bytes
-rw-r--r--street_signs/textures/street_signs_warning_orange.pngbin0 -> 9444 bytes
-rw-r--r--street_signs/textures/street_signs_warning_orange_3_line_inv.pngbin0 -> 2348 bytes
-rw-r--r--street_signs/textures/street_signs_warning_orange_4_line_inv.pngbin0 -> 2081 bytes
12 files changed, 93 insertions, 3 deletions
diff --git a/signs_lib/textures/signs_orange_front.png b/signs_lib/textures/signs_orange_front.png
index 633b19a..6e81443 100644
--- a/signs_lib/textures/signs_orange_front.png
+++ b/signs_lib/textures/signs_orange_front.png
Binary files differ
diff --git a/signs_lib/textures/signs_orange_inv.png b/signs_lib/textures/signs_orange_inv.png
index 5a813ae..8f9f9e6 100644
--- a/signs_lib/textures/signs_orange_inv.png
+++ b/signs_lib/textures/signs_orange_inv.png
Binary files differ
diff --git a/street_signs/init.lua b/street_signs/init.lua
index f9336bd..4b8062b 100644
--- a/street_signs/init.lua
+++ b/street_signs/init.lua
@@ -515,7 +515,8 @@ minetest.register_node("street_signs:sign_basic_top_only", {
local colors = {
{ "green", "f", "dye:green", "dye:white" },
{ "blue", "f", "dye:blue", "dye:white" },
- { "yellow", "0", "dye:yellow", "dye:black" }
+ { "yellow", "0", "dye:yellow", "dye:black" },
+ { "orange", "0", "dye:orange", "dye:black" }
}
for _, c in ipairs(colors) do
@@ -778,7 +779,7 @@ cbox = {
}
minetest.register_node("street_signs:sign_warning_3_line", {
- description = "Basic US diamond-shaped \"warning\" sign (3-line)",
+ description = "Basic US diamond-shaped \"warning\" sign (3-line, yellow)",
paramtype = "light",
sunlight_propagates = true,
paramtype2 = "facedir",
@@ -822,7 +823,7 @@ minetest.register_node("street_signs:sign_warning_3_line", {
})
minetest.register_node("street_signs:sign_warning_4_line", {
- description = "Basic US diamond-shaped \"warning\" sign (4-line)",
+ description = "Basic US diamond-shaped \"warning\" sign (4-line, yellow)",
paramtype = "light",
sunlight_propagates = true,
paramtype2 = "facedir",
@@ -865,6 +866,95 @@ minetest.register_node("street_signs:sign_warning_4_line", {
}
})
+minetest.register_node("street_signs:sign_warning_orange_3_line", {
+ description = "Basic US diamond-shaped \"warning\" sign (3-line, orange)",
+ paramtype = "light",
+ sunlight_propagates = true,
+ paramtype2 = "facedir",
+ drawtype = "mesh",
+ node_box = cbox,
+ selection_box = cbox,
+ mesh = "street_signs_warning.obj",
+ tiles = { "street_signs_warning_orange.png" },
+ inventory_image = "street_signs_warning_orange_3_line_inv.png",
+ groups = {choppy=2, dig_immediate=2},
+ default_color = "0",
+ on_construct = function(pos)
+ street_signs.construct_sign(pos)
+ end,
+ on_destruct = function(pos)
+ street_signs.destruct_sign(pos)
+ end,
+ on_receive_fields = function(pos, formname, fields, sender)
+ street_signs.receive_fields(pos, formname, fields, sender)
+ end,
+ on_punch = function(pos, node, puncher)
+ street_signs.update_sign(pos)
+ end,
+ number_of_lines = 3,
+ horiz_scaling = 1.75,
+ vert_scaling = 1.75,
+ line_spacing = 1,
+ font_size = 15,
+ x_offset = 6,
+ y_offset = 19,
+ chars_per_line = 15,
+ entity_info = {
+ mesh = "street_signs_warning_entity.obj",
+ yaw = {
+ 0,
+ math.pi / -2,
+ math.pi,
+ math.pi / 2,
+ }
+ }
+})
+
+minetest.register_node("street_signs:sign_warning_orange_4_line", {
+ description = "Basic US diamond-shaped \"warning\" sign (4-line, orange)",
+ paramtype = "light",
+ sunlight_propagates = true,
+ paramtype2 = "facedir",
+ drawtype = "mesh",
+ node_box = cbox,
+ selection_box = cbox,
+ mesh = "street_signs_warning.obj",
+ tiles = { "street_signs_warning_orange.png" },
+ inventory_image = "street_signs_warning_orange_4_line_inv.png",
+ groups = {choppy=2, dig_immediate=2},
+ default_color = "0",
+ on_construct = function(pos)
+ street_signs.construct_sign(pos)
+ end,
+ on_destruct = function(pos)
+ street_signs.destruct_sign(pos)
+ end,
+ on_receive_fields = function(pos, formname, fields, sender)
+ street_signs.receive_fields(pos, formname, fields, sender)
+ end,
+ on_punch = function(pos, node, puncher)
+ street_signs.update_sign(pos)
+ end,
+ number_of_lines = 4,
+ horiz_scaling = 1.75,
+ vert_scaling = 1.75,
+ line_spacing = 1,
+ font_size = 15,
+ x_offset = 6,
+ y_offset = 25,
+ chars_per_line = 15,
+ entity_info = {
+ mesh = "street_signs_warning_entity.obj",
+ yaw = {
+ 0,
+ math.pi / -2,
+ math.pi,
+ math.pi / 2,
+ }
+ }
+})
+
+
local signs_text_on_activate
signs_text_on_activate = function(self)
diff --git a/street_signs/textures/street_signs_highway_large_orange.png b/street_signs/textures/street_signs_highway_large_orange.png
new file mode 100644
index 0000000..fc1f955
--- /dev/null
+++ b/street_signs/textures/street_signs_highway_large_orange.png
Binary files differ
diff --git a/street_signs/textures/street_signs_highway_large_orange_inv.png b/street_signs/textures/street_signs_highway_large_orange_inv.png
new file mode 100644
index 0000000..7298bcd
--- /dev/null
+++ b/street_signs/textures/street_signs_highway_large_orange_inv.png
Binary files differ
diff --git a/street_signs/textures/street_signs_highway_medium_orange.png b/street_signs/textures/street_signs_highway_medium_orange.png
new file mode 100644
index 0000000..944e7d5
--- /dev/null
+++ b/street_signs/textures/street_signs_highway_medium_orange.png
Binary files differ
diff --git a/street_signs/textures/street_signs_highway_medium_orange_inv.png b/street_signs/textures/street_signs_highway_medium_orange_inv.png
new file mode 100644
index 0000000..3cc8a89
--- /dev/null
+++ b/street_signs/textures/street_signs_highway_medium_orange_inv.png
Binary files differ
diff --git a/street_signs/textures/street_signs_highway_small_orange.png b/street_signs/textures/street_signs_highway_small_orange.png
new file mode 100644
index 0000000..b6ed4b6
--- /dev/null
+++ b/street_signs/textures/street_signs_highway_small_orange.png
Binary files differ
diff --git a/street_signs/textures/street_signs_highway_small_orange_inv.png b/street_signs/textures/street_signs_highway_small_orange_inv.png
new file mode 100644
index 0000000..6494690
--- /dev/null
+++ b/street_signs/textures/street_signs_highway_small_orange_inv.png
Binary files differ
diff --git a/street_signs/textures/street_signs_warning_orange.png b/street_signs/textures/street_signs_warning_orange.png
new file mode 100644
index 0000000..02b75b4
--- /dev/null
+++ b/street_signs/textures/street_signs_warning_orange.png
Binary files differ
diff --git a/street_signs/textures/street_signs_warning_orange_3_line_inv.png b/street_signs/textures/street_signs_warning_orange_3_line_inv.png
new file mode 100644
index 0000000..2aa9b1b
--- /dev/null
+++ b/street_signs/textures/street_signs_warning_orange_3_line_inv.png
Binary files differ
diff --git a/street_signs/textures/street_signs_warning_orange_4_line_inv.png b/street_signs/textures/street_signs_warning_orange_4_line_inv.png
new file mode 100644
index 0000000..35b041c
--- /dev/null
+++ b/street_signs/textures/street_signs_warning_orange_4_line_inv.png
Binary files differ