summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-13 05:54:14 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-13 05:54:14 -0400
commitb78b5406532e3cf046d985af99038c54e450f5f6 (patch)
tree977f8c013397cdffd0dff0a8914c1ab73fd4f652
parent2f5ccf5b4f47f3bcfaa2c25c001b83b1b78cf99c (diff)
downloadmesecons-b78b5406532e3cf046d985af99038c54e450f5f6.tar
mesecons-b78b5406532e3cf046d985af99038c54e450f5f6.tar.gz
mesecons-b78b5406532e3cf046d985af99038c54e450f5f6.tar.bz2
mesecons-b78b5406532e3cf046d985af99038c54e450f5f6.tar.xz
mesecons-b78b5406532e3cf046d985af99038c54e450f5f6.zip
reworked textures for mesecons wires, added a new one for each of on/off
states, to allow wires without junction bumps to be textured differently.
-rw-r--r--mesecons/wires.lua16
-rw-r--r--mesecons_textures/textures/wires_bump_off.pngbin0 -> 347 bytes
-rw-r--r--mesecons_textures/textures/wires_bump_on.pngbin0 -> 386 bytes
-rw-r--r--mesecons_textures/textures/wires_off.pngbin532 -> 272 bytes
-rw-r--r--mesecons_textures/textures/wires_on.pngbin640 -> 286 bytes
-rw-r--r--mesecons_textures/textures/wires_vertical_off.pngbin643 -> 302 bytes
-rw-r--r--mesecons_textures/textures/wires_vertical_on.pngbin754 -> 341 bytes
7 files changed, 8 insertions, 8 deletions
diff --git a/mesecons/wires.lua b/mesecons/wires.lua
index 450aae2..f478548 100644
--- a/mesecons/wires.lua
+++ b/mesecons/wires.lua
@@ -92,16 +92,16 @@ for zmy=0, 1 do
table.insert(nodebox, box_bump1)
table.insert(nodebox, box_bump2)
tiles_off = {
- "wires_off.png",
- "wires_off.png",
+ "wires_bump_off.png",
+ "wires_bump_off.png",
"wires_vertical_off.png",
"wires_vertical_off.png",
"wires_vertical_off.png",
"wires_vertical_off.png"
}
tiles_on = {
- "wires_on.png",
- "wires_on.png",
+ "wires_bump_on.png",
+ "wires_bump_on.png",
"wires_vertical_on.png",
"wires_vertical_on.png",
"wires_vertical_on.png",
@@ -110,16 +110,16 @@ for zmy=0, 1 do
else
table.insert(nodebox, box_center)
tiles_off = {
- "wires_vertical_off.png",
- "wires_vertical_off.png",
+ "wires_off.png",
+ "wires_off.png",
"wires_vertical_off.png",
"wires_vertical_off.png",
"wires_vertical_off.png",
"wires_vertical_off.png"
}
tiles_on = {
- "wires_vertical_on.png",
- "wires_vertical_on.png",
+ "wires_on.png",
+ "wires_on.png",
"wires_vertical_on.png",
"wires_vertical_on.png",
"wires_vertical_on.png",
diff --git a/mesecons_textures/textures/wires_bump_off.png b/mesecons_textures/textures/wires_bump_off.png
new file mode 100644
index 0000000..1e0bd74
--- /dev/null
+++ b/mesecons_textures/textures/wires_bump_off.png
Binary files differ
diff --git a/mesecons_textures/textures/wires_bump_on.png b/mesecons_textures/textures/wires_bump_on.png
new file mode 100644
index 0000000..da9a661
--- /dev/null
+++ b/mesecons_textures/textures/wires_bump_on.png
Binary files differ
diff --git a/mesecons_textures/textures/wires_off.png b/mesecons_textures/textures/wires_off.png
index bbe5e08..01c3fd8 100644
--- a/mesecons_textures/textures/wires_off.png
+++ b/mesecons_textures/textures/wires_off.png
Binary files differ
diff --git a/mesecons_textures/textures/wires_on.png b/mesecons_textures/textures/wires_on.png
index d3ffb04..8ea4a80 100644
--- a/mesecons_textures/textures/wires_on.png
+++ b/mesecons_textures/textures/wires_on.png
Binary files differ
diff --git a/mesecons_textures/textures/wires_vertical_off.png b/mesecons_textures/textures/wires_vertical_off.png
index 21fd0cd..bbb5dc8 100644
--- a/mesecons_textures/textures/wires_vertical_off.png
+++ b/mesecons_textures/textures/wires_vertical_off.png
Binary files differ
diff --git a/mesecons_textures/textures/wires_vertical_on.png b/mesecons_textures/textures/wires_vertical_on.png
index 2280764..a458f8f 100644
--- a/mesecons_textures/textures/wires_vertical_on.png
+++ b/mesecons_textures/textures/wires_vertical_on.png
Binary files differ