diff options
author | Wuzzy <wuzzy2@mail.ru> | 2020-05-19 21:08:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 21:08:37 +0200 |
commit | c94d37827dd3a8be9dcc59bb693032ba7ea07922 (patch) | |
tree | ada7fd843d405f8ec6f1c43b749f553f4a215214 /doc | |
parent | 7d3972a5049324f776ab008894c34569641f0073 (diff) | |
download | minetest-c94d37827dd3a8be9dcc59bb693032ba7ea07922.tar.gz minetest-c94d37827dd3a8be9dcc59bb693032ba7ea07922.tar.bz2 minetest-c94d37827dd3a8be9dcc59bb693032ba7ea07922.zip |
Rework functionality of leveled nodes (#9852)
Co-authored-by: sfan5 <sfan5@live.de>
Co-authored-by: SmallJoker <SmallJoker@users.noreply.github.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 9c7c42436..8b7c412ab 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -4882,7 +4882,7 @@ Environment access * `minetest.add_node_level(pos, level)` * increase level of leveled node by level, default `level` equals `1` * if `totallevel > maxlevel`, returns rest (`total-max`) - * can be negative for decreasing + * `level` must be between -127 and 127 * `minetest.fix_light(pos1, pos2)`: returns `true`/`false` * resets the light in a cuboid-shaped part of the map and removes lighting bugs. @@ -7012,11 +7012,15 @@ Used by `minetest.register_node`. -- If true, a new liquid source can be created by placing two or more -- sources nearby - leveled = 16, + leveled = 0, -- Only valid for "nodebox" drawtype with 'type = "leveled"'. -- Allows defining the nodebox height without using param2. -- The nodebox height is 'leveled' / 64 nodes. - -- The maximum value of 'leveled' is 127. + -- The maximum value of 'leveled' is `leveled_max`. + + leveled_max = 127, + -- Maximum value for `leveled` (0-127), enforced in + -- `minetest.set_node_level` and `minetest.add_node_level`. liquid_range = 8, -- Number of flowing nodes around source (max. 8) |