diff options
author | Ben Deutsch <ben@bendeutsch.de> | 2016-08-02 22:47:47 +0200 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2016-08-10 12:18:25 +0200 |
commit | d1df09841d0eac7a88f638676b80ec848522cca5 (patch) | |
tree | d6aaea350a6586f15214c526911ac468cd5fae11 | |
parent | 2c31b79235dd83de753fce5890c5797e149048b8 (diff) | |
download | minetest-d1df09841d0eac7a88f638676b80ec848522cca5.tar.gz minetest-d1df09841d0eac7a88f638676b80ec848522cca5.tar.bz2 minetest-d1df09841d0eac7a88f638676b80ec848522cca5.zip |
Document zoom_fov in settingtypes.txt and minetest.conf.example
-rw-r--r-- | builtin/settingtypes.txt | 4 | ||||
-rw-r--r-- | minetest.conf.example | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index b5878dfe8..864485cce 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -435,6 +435,10 @@ vsync (V-Sync) bool false # Field of view in degrees. fov (Field of view) int 72 30 160 +# Field of view while zooming in degrees. +# This requires the "zoom" privilege on the server. +zoom_fov (Field of view for zoom) int 15 15 160 + # Adjust the gamma encoding for the light tables. Lower numbers are brighter. # This setting is for the client only and is ignored by the server. display_gamma (Gamma) float 1.8 1.0 3.0 diff --git a/minetest.conf.example b/minetest.conf.example index 139909d29..03a917a39 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -496,6 +496,11 @@ # type: int min: 30 max: 160 # fov = 72 +# Field of view while zooming in degrees. +# This requires the "zoom" privilege on the server. +# type: int min: 15 max: 160 +# zoom_fov = 15 + # Adjust the gamma encoding for the light tables. Lower numbers are brighter. # This setting is for the client only and is ignored by the server. # type: float min: 1 max: 3 |