mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
parent
95d7fcb949
commit
70b71c5013
2 changed files with 16 additions and 4 deletions
|
@ -13,6 +13,20 @@ minetest.register_node("testnodes:falling", {
|
|||
groups = { falling_node = 1, dig_immediate = 3 },
|
||||
})
|
||||
|
||||
minetest.register_node("testnodes:falling_facedir", {
|
||||
description = S("Falling Facedir Node"),
|
||||
tiles = {
|
||||
"testnodes_1.png",
|
||||
"testnodes_2.png",
|
||||
"testnodes_3.png",
|
||||
"testnodes_4.png",
|
||||
"testnodes_5.png",
|
||||
"testnodes_6.png",
|
||||
},
|
||||
paramtype2 = "facedir",
|
||||
groups = { falling_node = 1, dig_immediate = 3 },
|
||||
})
|
||||
|
||||
-- Same as falling node, but will stop falling on top of liquids
|
||||
minetest.register_node("testnodes:falling_float", {
|
||||
description = S("Falling+Floating Node"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue