diff options
author | hecks <42101236+hecktest@users.noreply.github.com> | 2021-01-02 15:14:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 15:14:29 +0100 |
commit | dd5a732fa90550066bb96305b64b6648903cc822 (patch) | |
tree | 1d39d1362e7619ff459eb6da5f1c9aab7629d1b6 /doc | |
parent | ad58fb22064c7db223cb825596c12f93f2a75a26 (diff) | |
download | minetest-dd5a732fa90550066bb96305b64b6648903cc822.tar.gz minetest-dd5a732fa90550066bb96305b64b6648903cc822.tar.bz2 minetest-dd5a732fa90550066bb96305b64b6648903cc822.zip |
Add on_deactivate callback for luaentities (#10723)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 8bf6ade69..47c2776e6 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -4207,6 +4207,8 @@ Callbacks: * Called when the object is instantiated. * `dtime_s` is the time passed since the object was unloaded, which can be used for updating the entity state. +* `on_deactivate(self) + * Called when the object is about to get removed or unloaded. * `on_step(self, dtime)` * Called on every server tick, after movement and collision processing. `dtime` is usually 0.1 seconds, as per the `dedicated_server_step` setting |