diff options
author | Tre <ThomasMonroe@protonmail.com> | 2017-12-15 22:05:36 -0600 |
---|---|---|
committer | rubenwardy <rubenwardy@gmail.com> | 2017-12-16 04:05:36 +0000 |
commit | fd71a7c16396585e6805b864cee414ad282e8c9a (patch) | |
tree | 3e9b08291d4e8853dba2668bc02d618180e0ebfe /builtin | |
parent | f1d2bc096573627b2bbb1aa48e856f7a76e4790a (diff) | |
download | minetest-fd71a7c16396585e6805b864cee414ad282e8c9a.tar.gz minetest-fd71a7c16396585e6805b864cee414ad282e8c9a.tar.bz2 minetest-fd71a7c16396585e6805b864cee414ad282e8c9a.zip |
Change Normal Map setting to be less ambigous
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/mainmenu/tab_settings.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/mainmenu/tab_settings.lua b/builtin/mainmenu/tab_settings.lua index f26049027..adf6c58ce 100644 --- a/builtin/mainmenu/tab_settings.lua +++ b/builtin/mainmenu/tab_settings.lua @@ -235,7 +235,7 @@ local function formspec(tabview, name, tabdata) .. dump(core.settings:get_bool("enable_bumpmapping")) .. "]" .. "checkbox[8.25,1;cb_tonemapping;" .. fgettext("Tone Mapping") .. ";" .. dump(core.settings:get_bool("tone_mapping")) .. "]" .. - "checkbox[8.25,1.5;cb_generate_normalmaps;" .. fgettext("Normal Mapping") .. ";" + "checkbox[8.25,1.5;cb_generate_normalmaps;" .. fgettext("Generate Normal Maps") .. ";" .. dump(core.settings:get_bool("generate_normalmaps")) .. "]" .. "checkbox[8.25,2;cb_parallax;" .. fgettext("Parallax Occlusion") .. ";" .. dump(core.settings:get_bool("enable_parallax_occlusion")) .. "]" .. @@ -252,7 +252,7 @@ local function formspec(tabview, name, tabdata) "label[8.38,1.2;" .. core.colorize("#888888", fgettext("Tone Mapping")) .. "]" .. "label[8.38,1.7;" .. core.colorize("#888888", - fgettext("Normal Mapping")) .. "]" .. + fgettext("Generate Normal Maps")) .. "]" .. "label[8.38,2.2;" .. core.colorize("#888888", fgettext("Parallax Occlusion")) .. "]" .. "label[8.38,2.7;" .. core.colorize("#888888", |