diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-10-20 21:08:46 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-10-20 21:08:46 -0400 |
commit | 89cd1c86a76dc068012baf22807dfa6cd7132ff8 (patch) | |
tree | 9dbf8b04d6e666d6c354ca3d3fad1a83b063db4a | |
parent | ce1acebf6d425176e5faa08eb57a018243efb872 (diff) |
Furnace and chest textures now have pipeworks-specific names to allow
for texture packs to cover them. Also, added proper top and bottom
textures for both.
-rw-r--r-- | compat.lua | 27 | ||||
-rw-r--r-- | textures/pipeworks_chest_side.png (renamed from textures/default_chest_side.png) | bin | 914 -> 914 bytes | |||
-rw-r--r-- | textures/pipeworks_chest_tb.png | bin | 0 -> 587 bytes | |||
-rw-r--r-- | textures/pipeworks_furnace_bottom.png | bin | 0 -> 648 bytes | |||
-rw-r--r-- | textures/pipeworks_furnace_side.png (renamed from textures/default_furnace_side.png) | bin | 657 -> 657 bytes | |||
-rw-r--r-- | textures/pipeworks_furnace_top.png | bin | 0 -> 648 bytes |
6 files changed, 26 insertions, 1 deletions
@@ -1,4 +1,5 @@ - +-- this bit of code modifies the default chests and furnaces to be compatible +-- with pipeworks. function clone_node(name) node2={} @@ -10,6 +11,12 @@ function clone_node(name) end furnace=clone_node("default:furnace") + furnace.tiles[1] = "pipeworks_furnace_top.png" + furnace.tiles[2] = "pipeworks_furnace_bottom.png" + furnace.tiles[3] = "pipeworks_furnace_side.png" + furnace.tiles[4] = "pipeworks_furnace_side.png" + furnace.tiles[5] = "pipeworks_furnace_side.png" + -- note we don't redefine entry #6 - the front. furnace.groups.tubedevice=1 furnace.groups.tubedevice_receiver=1 furnace.tube={insert_object = function(pos,node,stack,direction) @@ -44,6 +51,12 @@ furnace=clone_node("default:furnace") minetest.register_node(":default:furnace",furnace) furnace=clone_node("default:furnace_active") + furnace.tiles[1] = "pipeworks_furnace_top.png" + furnace.tiles[2] = "pipeworks_furnace_bottom.png" + furnace.tiles[3] = "pipeworks_furnace_side.png" + furnace.tiles[4] = "pipeworks_furnace_side.png" + furnace.tiles[5] = "pipeworks_furnace_side.png" + -- note we don't redefine entry #6 - the front. furnace.groups.tubedevice=1 furnace.groups.tubedevice_receiver=1 furnace.tube={insert_object=function(pos,node,stack,direction) @@ -78,6 +91,12 @@ furnace=clone_node("default:furnace_active") chest=clone_node("default:chest") + chest.tiles[1] = "pipeworks_chest_tb.png" + chest.tiles[2] = "pipeworks_chest_tb.png" + chest.tiles[3] = "pipeworks_chest_side.png" + chest.tiles[4] = "pipeworks_chest_side.png" + chest.tiles[5] = "pipeworks_chest_side.png" + -- note we don't redefine entry #6 - the front. chest.groups.tubedevice=1 chest.groups.tubedevice_receiver=1 chest.tube={insert_object = function(pos,node,stack,direction) @@ -103,6 +122,12 @@ minetest.register_node(":default:chest",chest) chest_locked=clone_node("default:chest_locked") + chest_locked.tiles[1] = "pipeworks_chest_tb.png" + chest_locked.tiles[2] = "pipeworks_chest_tb.png" + chest_locked.tiles[3] = "pipeworks_chest_side.png" + chest_locked.tiles[4] = "pipeworks_chest_side.png" + chest_locked.tiles[5] = "pipeworks_chest_side.png" + -- note we don't redefine entry #6 - the front. chest_locked.groups.tubedevice=1 chest_locked.groups.tubedevice_receiver=1 chest_locked.tube={insert_object = function(pos,node,stack,direction) diff --git a/textures/default_chest_side.png b/textures/pipeworks_chest_side.png Binary files differindex 498eb3e..498eb3e 100644 --- a/textures/default_chest_side.png +++ b/textures/pipeworks_chest_side.png diff --git a/textures/pipeworks_chest_tb.png b/textures/pipeworks_chest_tb.png Binary files differnew file mode 100644 index 0000000..ac1cb2b --- /dev/null +++ b/textures/pipeworks_chest_tb.png diff --git a/textures/pipeworks_furnace_bottom.png b/textures/pipeworks_furnace_bottom.png Binary files differnew file mode 100644 index 0000000..a99f292 --- /dev/null +++ b/textures/pipeworks_furnace_bottom.png diff --git a/textures/default_furnace_side.png b/textures/pipeworks_furnace_side.png Binary files differindex b54bae1..b54bae1 100644 --- a/textures/default_furnace_side.png +++ b/textures/pipeworks_furnace_side.png diff --git a/textures/pipeworks_furnace_top.png b/textures/pipeworks_furnace_top.png Binary files differnew file mode 100644 index 0000000..a99f292 --- /dev/null +++ b/textures/pipeworks_furnace_top.png |