1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Add 3d cloud checkbox in main menu (and rename setting from enable_2d_clouds to enable_3d_clouds)

This commit is contained in:
Perttu Ahola 2011-11-02 12:50:21 +02:00
parent f65d157786
commit 0c20973c17
5 changed files with 29 additions and 6 deletions

View file

@ -1543,6 +1543,7 @@ int main(int argc, char *argv[])
menudata.port = narrow_to_wide(itos(port));
menudata.fancy_trees = g_settings->getBool("new_style_leaves");
menudata.smooth_lighting = g_settings->getBool("smooth_lighting");
menudata.clouds_3d = g_settings->getBool("enable_3d_clouds");
menudata.creative_mode = g_settings->getBool("creative_mode");
menudata.enable_damage = g_settings->getBool("enable_damage");
@ -1615,6 +1616,7 @@ int main(int argc, char *argv[])
port = newport;
g_settings->set("new_style_leaves", itos(menudata.fancy_trees));
g_settings->set("smooth_lighting", itos(menudata.smooth_lighting));
g_settings->set("enable_3d_clouds", itos(menudata.clouds_3d));
g_settings->set("creative_mode", itos(menudata.creative_mode));
g_settings->set("enable_damage", itos(menudata.enable_damage));