diff options
author | Kahrl <kahrl@gmx.net> | 2016-02-08 22:20:04 +0100 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2016-02-11 04:22:58 +0000 |
commit | b1428ab4bb1e2cf73bc8ac951d41d22203ea68a0 (patch) | |
tree | 6cc3abacb6afef178ead78405277ae161e31c7dd /doc/lua_api.txt | |
parent | 47464c9344a1a4817ad6e4c6ec44526df305b1f6 (diff) | |
download | minetest-b1428ab4bb1e2cf73bc8ac951d41d22203ea68a0.tar.gz minetest-b1428ab4bb1e2cf73bc8ac951d41d22203ea68a0.tar.bz2 minetest-b1428ab4bb1e2cf73bc8ac951d41d22203ea68a0.zip |
Add '/clearobjects quick'
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r-- | doc/lua_api.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index b6bc957c1..5f4e06423 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -2046,8 +2046,12 @@ and `minetest.auth_reload` call the authetification handler. * `minetest.generate_decorations(vm, pos1, pos2)` * Generate all registered decorations within the VoxelManip `vm` and in the area from `pos1` to `pos2`. * `pos1` and `pos2` are optional and default to mapchunk minp and maxp. -* `minetest.clear_objects()` - * clear all objects in the environments +* `minetest.clear_objects([options])` + * Clear all objects in the environment + * Takes an optional table as an argument with the field `mode`. + * mode = `"full"`: Load and go through every mapblock, clearing objects (default). + * mode = `"quick"`: Clear objects immediately in loaded mapblocks; + clear objects in unloaded mapblocks only when the mapblocks are next activated. * `minetest.emerge_area(pos1, pos2, [callback], [param])` * Queue all blocks in the area from `pos1` to `pos2`, inclusive, to be asynchronously * fetched from memory, loaded from disk, or if inexistent, generates them. |