diff options
author | Wuzzy <Wuzzy@disroot.org> | 2022-07-02 18:57:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 19:57:48 +0100 |
commit | 142928e944db089cccce6c0ea32a89b32300b3d1 (patch) | |
tree | 666fa8664a4a0a4d2d365d24ff61448e257759cc /doc | |
parent | b095dc4f2bf2a1ace010dfae0ead69654b0ca3ac (diff) | |
download | minetest-142928e944db089cccce6c0ea32a89b32300b3d1.tar.gz minetest-142928e944db089cccce6c0ea32a89b32300b3d1.tar.bz2 minetest-142928e944db089cccce6c0ea32a89b32300b3d1.zip |
Allow to set maximum star opacity at daytime (#11663)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index b5f58d7f2..994a30981 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -7200,6 +7200,9 @@ object you are working with still exists. * `star_parameters` is a table with the following optional fields: * `visible`: Boolean for whether the stars are visible. (default: `true`) + * `day_opacity`: Float for maximum opacity of stars at day. + No effect if `visible` is false. + (default: 0.0; maximum: 1.0; minimum: 0.0) * `count`: Integer number to set the number of stars in the skybox. Only applies to `"skybox"` and `"regular"` sky types. (default: `1000`) |