mirror of
https://github.com/Sokomine/locks.git
synced 2025-01-23 13:50:21 +01:00
changed furnace so that it has no problem with the new animation for active furnaces; removed pipeworks overlay for furnace front
This commit is contained in:
parent
bfbc6712f9
commit
06fb90c119
1
init.lua
1
init.lua
@ -24,6 +24,7 @@
|
|||||||
-- Version 1.20
|
-- Version 1.20
|
||||||
|
|
||||||
-- Changelog:
|
-- Changelog:
|
||||||
|
-- 08.05.2014 * Changed animation of shared locked furnace (removed pipeworks overlay on front, changed to new animation type)
|
||||||
-- 10.01.2013 * Added command to toggle for pipeworks output
|
-- 10.01.2013 * Added command to toggle for pipeworks output
|
||||||
-- * Added pipeworks support for chests and furnace.
|
-- * Added pipeworks support for chests and furnace.
|
||||||
-- 17.12.2013 * aborting input with ESC is possible again
|
-- 17.12.2013 * aborting input with ESC is possible again
|
||||||
|
@ -7,10 +7,20 @@
|
|||||||
|
|
||||||
|
|
||||||
locks.furnace_add = {};
|
locks.furnace_add = {};
|
||||||
locks.furnace_add_tiles_normal = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
|
locks.furnace_add.tiles_normal = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
|
||||||
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front.png"};
|
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front.png"};
|
||||||
locks.furnace_add.tiles_active = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
|
locks.furnace_add.tiles_active = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
|
||||||
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front_active.png"};
|
"default_furnace_side.png", "default_furnace_side.png", --"default_furnace_front_active.png"};
|
||||||
|
{
|
||||||
|
image = "default_furnace_front_active.png",
|
||||||
|
backface_culling = false,
|
||||||
|
animation = {
|
||||||
|
type = "vertical_frames",
|
||||||
|
aspect_w = 16,
|
||||||
|
aspect_h = 16,
|
||||||
|
length = 1.5
|
||||||
|
},
|
||||||
|
}};
|
||||||
locks.furnace_add.groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2};
|
locks.furnace_add.groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2};
|
||||||
locks.furnace_add.tube = {};
|
locks.furnace_add.tube = {};
|
||||||
|
|
||||||
@ -24,7 +34,7 @@ if( locks.pipeworks_enabled ) then
|
|||||||
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
||||||
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
||||||
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
||||||
"default_furnace_front.png^pipeworks_tube_connection_stony.png" };
|
"default_furnace_front.png" };
|
||||||
|
|
||||||
|
|
||||||
locks.furnace_add.tiles_active = {
|
locks.furnace_add.tiles_active = {
|
||||||
@ -33,7 +43,17 @@ if( locks.pipeworks_enabled ) then
|
|||||||
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
||||||
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
||||||
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
"default_furnace_side.png^pipeworks_tube_connection_stony.png",
|
||||||
"default_furnace_front_active.png^pipeworks_tube_connection_stony.png" };
|
{
|
||||||
|
image = "default_furnace_front_active.png",
|
||||||
|
backface_culling = false,
|
||||||
|
animation = {
|
||||||
|
type = "vertical_frames",
|
||||||
|
aspect_w = 16,
|
||||||
|
aspect_h = 16,
|
||||||
|
length = 1.5
|
||||||
|
},
|
||||||
|
}};
|
||||||
|
-- "default_furnace_front_active.png" };
|
||||||
|
|
||||||
|
|
||||||
locks.furnace_add.groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,
|
locks.furnace_add.groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2,
|
||||||
|
Loading…
Reference in New Issue
Block a user