diff options
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index bc0d4c527..704501f36 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -83,6 +83,20 @@ # type: bool # continuous_forward = false +# Enable Joysticks +# type: bool +# enable_joysticks = false + +# The time in seconds it takes between repeated events +# when holding down a joystick button combination. +# type: float +# repeat_joystick_button_time = 0.17 + +# The sensitivity of the joystick axes for moving the +# ingame view frustum around. +# type: float +# joystick_frustum_sensitivity = 170 + # Key for moving the player forward. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 # type: key @@ -732,6 +746,12 @@ # type: string # serverlist_url = servers.minetest.net +# Disable escape sequences, e.g. chat coloring. +# Use this if you want to run a server with pre-0.4.14 clients and you want to disable +# the escape sequences generated by mods. +# type: bool +# disable_escape_sequences = false + ## Network # Network port to listen (UDP). @@ -1527,3 +1547,4 @@ # type: string # modstore_details_url = https://forum.minetest.net/mmdb/mod/*/ + |