Skip to content

Commit a5dcf12

Browse files
4Evergreen4ShadowNinja
4Evergreen4
authored andcommittedFeb 17, 2014
Add animated front texture for active furnace
1 parent d5fcae0 commit a5dcf12

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed
 

‎mods/default/nodes.lua

+17-2
Original file line numberDiff line numberDiff line change
@@ -895,8 +895,23 @@ minetest.register_node("default:furnace", {
895895

896896
minetest.register_node("default:furnace_active", {
897897
description = "Furnace",
898-
tiles = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
899-
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front_active.png"},
898+
tiles = {
899+
"default_furnace_top.png",
900+
"default_furnace_bottom.png",
901+
"default_furnace_side.png",
902+
"default_furnace_side.png",
903+
"default_furnace_side.png",
904+
{
905+
image = "default_furnace_front_active.png",
906+
backface_culling = false,
907+
animation = {
908+
type = "vertical_frames",
909+
aspect_w = 16,
910+
aspect_h = 16,
911+
length = 1.5
912+
},
913+
}
914+
},
900915
paramtype2 = "facedir",
901916
light_source = 8,
902917
drop = "default:furnace",
Loading

1 commit comments

Comments
 (1)

HybridDog commented on Feb 21, 2014

@HybridDog
Contributor

finally

Please sign in to comment.