Skip to content
Snippets Groups Projects
Commit 74780134 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Update doc/lua_api.txt

parent 93219e3b
No related branches found
No related tags found
No related merge requests found
...@@ -160,6 +160,13 @@ eg. {name="default:apple", count=1, wear=0, metadata=""} ...@@ -160,6 +160,13 @@ eg. {name="default:apple", count=1, wear=0, metadata=""}
Any time an item must be passed to a function, it can be an Any time an item must be passed to a function, it can be an
ItemStack (see below), an itemstring or a table in the above format. ItemStack (see below), an itemstring or a table in the above format.
SimpleSoundSpec:
eg. ""
eg. "default_place_node"
eg. {}
eg. {name="default_place_node"}
eg. {name="default_place_node", gain=1.0}
Items Items
------ ------
Node (register_node): Node (register_node):
...@@ -672,6 +679,10 @@ Node definition (register_node) ...@@ -672,6 +679,10 @@ Node definition (register_node)
selection_box = {type="regular"}, selection_box = {type="regular"},
legacy_facedir_simple = false, -- Support maps made in and before January 2012 legacy_facedir_simple = false, -- Support maps made in and before January 2012
legacy_wallmounted = false, -- Support maps made in and before January 2012 legacy_wallmounted = false, -- Support maps made in and before January 2012
sounds = {
footstep = <SimpleSoundSpec>,
dug = <SimpleSoundSpec>,
},
} }
Recipe: (register_craft) Recipe: (register_craft)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment