diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2012-08-13 05:54:14 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2012-08-13 05:54:14 -0400 |
commit | b78b5406532e3cf046d985af99038c54e450f5f6 (patch) | |
tree | 977f8c013397cdffd0dff0a8914c1ab73fd4f652 | |
parent | 2f5ccf5b4f47f3bcfaa2c25c001b83b1b78cf99c (diff) | |
download | mesecons-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.lua | 16 | ||||
-rw-r--r-- | mesecons_textures/textures/wires_bump_off.png | bin | 0 -> 347 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_bump_on.png | bin | 0 -> 386 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_off.png | bin | 532 -> 272 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_on.png | bin | 640 -> 286 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_vertical_off.png | bin | 643 -> 302 bytes | |||
-rw-r--r-- | mesecons_textures/textures/wires_vertical_on.png | bin | 754 -> 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 Binary files differnew file mode 100644 index 0000000..1e0bd74 --- /dev/null +++ b/mesecons_textures/textures/wires_bump_off.png diff --git a/mesecons_textures/textures/wires_bump_on.png b/mesecons_textures/textures/wires_bump_on.png Binary files differnew file mode 100644 index 0000000..da9a661 --- /dev/null +++ b/mesecons_textures/textures/wires_bump_on.png diff --git a/mesecons_textures/textures/wires_off.png b/mesecons_textures/textures/wires_off.png Binary files differindex bbe5e08..01c3fd8 100644 --- a/mesecons_textures/textures/wires_off.png +++ b/mesecons_textures/textures/wires_off.png diff --git a/mesecons_textures/textures/wires_on.png b/mesecons_textures/textures/wires_on.png Binary files differindex d3ffb04..8ea4a80 100644 --- a/mesecons_textures/textures/wires_on.png +++ b/mesecons_textures/textures/wires_on.png diff --git a/mesecons_textures/textures/wires_vertical_off.png b/mesecons_textures/textures/wires_vertical_off.png Binary files differindex 21fd0cd..bbb5dc8 100644 --- a/mesecons_textures/textures/wires_vertical_off.png +++ b/mesecons_textures/textures/wires_vertical_off.png diff --git a/mesecons_textures/textures/wires_vertical_on.png b/mesecons_textures/textures/wires_vertical_on.png Binary files differindex 2280764..a458f8f 100644 --- a/mesecons_textures/textures/wires_vertical_on.png +++ b/mesecons_textures/textures/wires_vertical_on.png |