diff options
author | sfan5 <sfan5@live.de> | 2020-10-19 20:38:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 20:38:15 +0200 |
commit | 660115c1abc76f3d4f6a6597ed0c4737465c6c55 (patch) | |
tree | f919584a87460f07d81fa994008e77bcb27a3cba /doc | |
parent | b826e3973065a0bb81269c8decb5a33073508164 (diff) | |
download | minetest-660115c1abc76f3d4f6a6597ed0c4737465c6c55.tar.gz minetest-660115c1abc76f3d4f6a6597ed0c4737465c6c55.tar.bz2 minetest-660115c1abc76f3d4f6a6597ed0c4737465c6c55.zip |
Decouple entity minimap markers from nametags replacing with show_on_minimap property (#10443)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index d3aaa309c..9a46c7b57 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -6880,6 +6880,10 @@ Player properties need to be saved manually. shaded = true, -- Setting this to 'false' disables diffuse lighting of entity + + show_on_minimap = false, + -- Defaults to true for players, false for other entities. + -- If set to true the entity will show as a marker on the minimap. } Entity definition |