diff options
author | paramat <paramat@users.noreply.github.com> | 2017-09-25 19:28:46 +0100 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2017-09-25 19:33:31 +0100 |
commit | 6df312a608912b3cb21d04532151e29e8b0c7301 (patch) | |
tree | 97bceb54131f688249795ae1e53301d3eefc593f | |
parent | a455297d297c0819a7eff89e51e5f01a5ac731c3 (diff) | |
download | minetest-6df312a608912b3cb21d04532151e29e8b0c7301.tar.gz minetest-6df312a608912b3cb21d04532151e29e8b0c7301.tar.bz2 minetest-6df312a608912b3cb21d04532151e29e8b0c7301.zip |
Can_zoom player object property: Add missing documentation
-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 aa27de52a..b71eb5477 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -4128,6 +4128,8 @@ Definition tables -- ^ For players: Defaults to `minetest.PLAYER_MAX_HP_DEFAULT` breath_max = 0, -- ^ For players only. Defaults to `minetest.PLAYER_MAX_BREATH_DEFAULT` + can_zoom = true, + -- ^ For players only. Enables the zoom feature. Defaults to true physical = true, collide_with_objects = true, -- collide with other objects if physical = true weight = 5, |