diff options
author | Paramat <paramat@users.noreply.github.com> | 2017-03-20 21:22:16 +0000 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-03-20 22:22:16 +0100 |
commit | c4b98deb616fbe204c503d678fb920baa33cbede (patch) | |
tree | 9810be5c3cb196b7bee1351d03aca1778a97de6b | |
parent | d4e0c0f9b818120286369b33b1bdb5eb6ece7a83 (diff) | |
download | minetest-c4b98deb616fbe204c503d678fb920baa33cbede.tar.gz minetest-c4b98deb616fbe204c503d678fb920baa33cbede.tar.bz2 minetest-c4b98deb616fbe204c503d678fb920baa33cbede.zip |
Firelike drawtype: Add missing docs for visual_scale in lua_api.txt (#5434)
-rw-r--r-- | doc/lua_api.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 9b53b87f5..2ac8f1077 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -3841,9 +3841,10 @@ Definition tables drawtype = "normal", -- See "Node drawtypes" visual_scale = 1.0, --[[ - ^ Supported for drawtypes "plantlike", "signlike", "torchlike", "mesh". - ^ For plantlike, the image will start at the bottom of the node; for the - ^ other drawtypes, the image will be centered on the node. + ^ Supported for drawtypes "plantlike", "signlike", "torchlike", + ^ "firelike", "mesh". + ^ For plantlike and firelike, the image will start at the bottom of the + ^ node, for the other drawtypes the image will be centered on the node. ^ Note that positioning for "torchlike" may still change. ]] tiles = {tile definition 1, def2, def3, def4, def5, def6}, --[[ ^ Textures of node; +Y, -Y, +X, -X, +Z, -Z (old field name: tile_images) |