diff options
author | paramat <mat.gregory@virginmedia.com> | 2017-04-28 03:06:49 +0100 |
---|---|---|
committer | Auke Kok <sofar+github@foo-projects.org> | 2017-05-02 20:42:35 -0700 |
commit | ad9fcf859ec2347325830e09504ae96968b51ea8 (patch) | |
tree | 1f13dd4bdfe3f2aef666fce622634f1d0ee70e3f /doc/lua_api.txt | |
parent | f9fdb48dc85e53253ef93972355d3c7bc9d0ffb0 (diff) | |
download | minetest-ad9fcf859ec2347325830e09504ae96968b51ea8.tar.gz minetest-ad9fcf859ec2347325830e09504ae96968b51ea8.tar.bz2 minetest-ad9fcf859ec2347325830e09504ae96968b51ea8.zip |
Set sky API: Add bool for clouds in front of custom skybox
Default true.
Add 'm_clouds_enabled' bool to sky.h, set from new bool in 'set sky' API.
Make 'getCloudsVisible()' depend on 'm_clouds_enabled' instead of
'm_visible' (whether normal sky is visible).
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r-- | doc/lua_api.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 77ffb88e2..599e02fcb 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -3077,13 +3077,15 @@ This is basically a reference to a C++ `ServerActiveObject` * `hud_set_hotbar_selected_image(texturename)` * sets image for selected item of hotbar * `hud_get_hotbar_selected_image`: returns texturename -* `set_sky(bgcolor, type, {texture names})` +* `set_sky(bgcolor, type, {texture names}, clouds)` * `bgcolor`: ColorSpec, defaults to white - * Available types: + * `type`: Available types: * `"regular"`: Uses 0 textures, `bgcolor` ignored * `"skybox"`: Uses 6 textures, `bgcolor` used * `"plain"`: Uses 0 textures, `bgcolor` used -* `get_sky()`: returns bgcolor, type and a table with the textures + * `clouds`: Boolean for whether clouds appear in front of `"skybox"` or + `"plain"` custom skyboxes (default: `true`) +* `get_sky()`: returns bgcolor, type, table of textures, clouds * `set_clouds(parameters)`: set cloud parameters * `parameters` is a table with the following optional fields: * `density`: from `0` (no clouds) to `1` (full clouds) (default `0.4`) |