mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Fix plantlike_rooted
world-aligned node base textures (#12994)
Co-authored-by: Wuzzy <Wuzzy@disroot.org>
This commit is contained in:
parent
981d79157a
commit
1f3b5e553b
3 changed files with 24 additions and 6 deletions
|
@ -11,6 +11,21 @@ minetest.register_node("tiled:tiled", {
|
|||
groups = {cracky=3},
|
||||
})
|
||||
|
||||
minetest.register_node("tiled:tiled_rooted", {
|
||||
description = "Tiled 'plantlike_rooted' Node (world-aligned)".."\n"..
|
||||
"Base node texture spans over a space of 8×8 nodes".."\n"..
|
||||
"A plantlike thing grows on top",
|
||||
paramtype = "light",
|
||||
drawtype = "plantlike_rooted",
|
||||
tiles = {{
|
||||
name = "tiled_tiled.png",
|
||||
align_style = "world",
|
||||
scale = 8,
|
||||
}},
|
||||
special_tiles = {"tiled_tiled_node.png"},
|
||||
groups = {cracky=3},
|
||||
})
|
||||
|
||||
minetest.register_node("tiled:tiled_n", {
|
||||
description = "Tiled Node (node-aligned)".."\n"..align_help_n,
|
||||
tiles = {{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue