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 /src/client.h | |
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 'src/client.h')
-rw-r--r-- | src/client.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h index e8db7de44..0dd519308 100644 --- a/src/client.h +++ b/src/client.h @@ -174,6 +174,7 @@ struct ClientEvent video::SColor *bgcolor; std::string *type; std::vector<std::string> *params; + bool clouds; } set_sky; struct{ bool do_override; |