mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 22:33:16 -04:00
Add animated front texture for default:furnace_active
This commit is contained in:
parent
d5fcae085d
commit
cac0e7c2ca
2 changed files with 12 additions and 2 deletions
|
@ -895,8 +895,18 @@ minetest.register_node("default:furnace", {
|
||||||
|
|
||||||
minetest.register_node("default:furnace_active", {
|
minetest.register_node("default:furnace_active", {
|
||||||
description = "Furnace",
|
description = "Furnace",
|
||||||
tiles = {"default_furnace_top.png", "default_furnace_bottom.png", "default_furnace_side.png",
|
tiles = {
|
||||||
"default_furnace_side.png", "default_furnace_side.png", "default_furnace_front_active.png"},
|
"default_furnace_top.png",
|
||||||
|
"default_furnace_bottom.png",
|
||||||
|
"default_furnace_side.png",
|
||||||
|
"default_furnace_side.png",
|
||||||
|
"default_furnace_side.png",
|
||||||
|
{
|
||||||
|
image="default_furnace_front_active.png",
|
||||||
|
backface_culling=false,
|
||||||
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=1.5}
|
||||||
|
}
|
||||||
|
},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
light_source = 8,
|
light_source = 8,
|
||||||
drop = "default:furnace",
|
drop = "default:furnace",
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 826 B After Width: | Height: | Size: 4.8 KiB |
Loading…
Add table
Reference in a new issue