diff options
author | Wuzzy <almikes@aol.com> | 2014-07-03 07:46:19 +0200 |
---|---|---|
committer | Ekdohibs <nathanael.courant@laposte.net> | 2017-05-06 21:21:59 +0200 |
commit | 07c17db11450f235b67895ce39a5aef67458107d (patch) | |
tree | 9f545f36863609a0b33dfc8cbfa558116103da11 /minetest.conf.example | |
parent | 45ab62d6a3d90ab3b97aec88251a766cb5dd1899 (diff) | |
download | minetest-07c17db11450f235b67895ce39a5aef67458107d.tar.gz minetest-07c17db11450f235b67895ce39a5aef67458107d.tar.bz2 minetest-07c17db11450f235b67895ce39a5aef67458107d.zip |
Add configurable key bindings for hotbar scrolling, and for changing volume.
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index b9efc432a..6c6ce91b8 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -186,6 +186,31 @@ # type: key # keymap_noclip = KEY_KEY_H +# Key for selecting the next item in the hotbar. +# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 +# type: key +# keymap_hotbar_next = KEY_KEY_N + +# Key for selecting the previous item in the hotbar. +# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 +# type: key +# keymap_hotbar_previous = KEY_KEY_B + +# Key for muting the game. +# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 +# type: key +# keymap_mute = KEY_KEY_M + +# Key for increasing the volume. +# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 +# type: key +# keymap_increase_volume = + +# Key for decreasing the volume. +# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 +# type: key +# keymap_decrease_volume = + # Key for toggling autorun. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 # type: key |