aboutsummaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorx2048 <codeforsmile@gmail.com>2022-05-29 13:58:57 +0200
committerGitHub <noreply@github.com>2022-05-29 13:58:57 +0200
commit25ba9d848d8199fd37ea29fe80704116ac9107c1 (patch)
treedfcbd52bb09ee56ac0d8eb2e6247868bb69f0978 /builtin
parent76000e676bde0191d64dc0afd2f3ae74bb6c40b5 (diff)
downloadhax-minetest-server-25ba9d848d8199fd37ea29fe80704116ac9107c1.tar.gz
hax-minetest-server-25ba9d848d8199fd37ea29fe80704116ac9107c1.zip
Default settings, presets and configuration for dynamic shadows (#12359)
Diffstat (limited to 'builtin')
-rw-r--r--builtin/mainmenu/tab_settings.lua17
1 files changed, 9 insertions, 8 deletions
diff --git a/builtin/mainmenu/tab_settings.lua b/builtin/mainmenu/tab_settings.lua
index 0e761d324..880978800 100644
--- a/builtin/mainmenu/tab_settings.lua
+++ b/builtin/mainmenu/tab_settings.lua
@@ -50,7 +50,7 @@ local labels = {
fgettext("Low"),
fgettext("Medium"),
fgettext("High"),
- fgettext("Ultra High")
+ fgettext("Very High")
}
}
@@ -219,8 +219,9 @@ local function formspec(tabview, name, tabdata)
.. dump(core.settings:get_bool("enable_waving_leaves")) .. "]" ..
"checkbox[8.25,2;cb_waving_plants;" .. fgettext("Waving Plants") .. ";"
.. dump(core.settings:get_bool("enable_waving_plants")) .. "]"..
- "label[8.25,3.0;" .. fgettext("Dynamic shadows: ") .. "]" ..
- "dropdown[8.25,3.5;3.5;dd_shadows;" .. dd_options.shadow_levels[1] .. ";"
+ "label[8.25,2.8;" .. fgettext("Dynamic shadows:") .. "]" ..
+ "label[8.25,3.2;" .. fgettext("(game support required)") .. "]" ..
+ "dropdown[8.25,3.7;3.5;dd_shadows;" .. dd_options.shadow_levels[1] .. ";"
.. getSettingIndex.ShadowMapping() .. "]"
else
tab_string = tab_string ..
@@ -364,11 +365,11 @@ local function handle_settings_buttons(this, fields, tabname, tabdata)
core.settings:set("enable_dynamic_shadows", "false")
else
local shadow_presets = {
- [2] = { 55, 512, "true", 0, "false" },
- [3] = { 82, 1024, "true", 1, "false" },
- [4] = { 240, 2048, "true", 1, "false" },
- [5] = { 240, 2048, "true", 2, "true" },
- [6] = { 300, 4096, "true", 2, "true" },
+ [2] = { 62, 512, "true", 0, "false" },
+ [3] = { 93, 1024, "true", 0, "false" },
+ [4] = { 140, 2048, "true", 1, "false" },
+ [5] = { 210, 4096, "true", 2, "true" },
+ [6] = { 300, 8192, "true", 2, "true" },
}
local s = shadow_presets[table.indexof(labels.shadow_levels, fields["dd_shadows"])]
if s then