diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index ded7b580f..0b08282a0 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -5482,9 +5482,9 @@ Used by `ObjectRef` methods. Part of an Entity definition. -- 'inventory_image'. -- "item" is similar to "wielditem" but ignores the 'wield_image' parameter. - visual_size = {x = 1, y = 1}, - -- `x` multiplies horizontal (X and Z) visual size. - -- `y` multiplies vertical (Y) visual size. + visual_size = {x = 1, y = 1, z = 1}, + -- Multipliers for the visual size. If `z` is not specified, `x` will be used + -- to scale the entity along both horizontal axes. mesh = "model", |