2d_torches/init.lua

21 lines
552 B
Lua
Raw Normal View History

2022-04-03 07:13:50 +02:00
minetest.override_item("default:torch", {
drawtype = "torchlike",
mesh = "",
})
minetest.override_item("default:torch_wall", {
drawtype = "torchlike",
mesh = "",
tiles = {{
name = "default_torch_animated.png",
animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 3.3}
}},
})
minetest.override_item("default:torch_ceiling", {
drawtype = "torchlike",
mesh = "",
tiles = {{
name = "default_torch_on_ceiling_animated.png",
animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 3.3}
}},
})