Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
doc: Update node callback documentation
- Loading branch information
Showing
with
6 additions
and
3 deletions.
-
+6
−3
doc/lua_api.txt
|
@@ -3219,14 +3219,17 @@ Definition tables |
|
|
}, |
|
|
|
|
|
on_construct = func(pos), --[[ |
|
|
^ Node constructor; always called after adding node |
|
|
^ Node constructor; called after adding node |
|
|
^ Can set up metadata and stuff like that |
|
|
^ Not called for bulk node placement (i.e. schematics and VoxelManip) |
|
|
^ default: nil ]] |
|
|
on_destruct = func(pos), --[[ |
|
|
^ Node destructor; always called before removing node |
|
|
^ Node destructor; called before removing node |
|
|
^ Not called for bulk node placement (i.e. schematics and VoxelManip) |
|
|
^ default: nil ]] |
|
|
after_destruct = func(pos, oldnode), --[[ |
|
|
^ Node destructor; always called after removing node |
|
|
^ Node destructor; called after removing node |
|
|
^ Not called for bulk node placement (i.e. schematics and VoxelManip) |
|
|
^ default: nil ]] |
|
|
|
|
|
after_place_node = func(pos, placer, itemstack, pointed_thing) --[[ |
|
|