diff options
author | Gaƫl C <gael-de-sailly@netc.eu> | 2018-12-01 10:01:32 +0100 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2018-12-01 10:01:32 +0100 |
commit | 327bad2eafb8cfc05b7f831992be5700a167a53c (patch) | |
tree | 682d70aca114d7d350ed23b22075c96c2fc549be /minetest.conf.example | |
parent | dcf58a3ad0c1092b3537039ee55892bb7dc83dee (diff) | |
download | minetest-327bad2eafb8cfc05b7f831992be5700a167a53c.tar.gz minetest-327bad2eafb8cfc05b7f831992be5700a167a53c.tar.bz2 minetest-327bad2eafb8cfc05b7f831992be5700a167a53c.zip |
Added pitch fly mode (#7817)
In pitch fly mode, you fly to the exact direction you are pointing at, using the forward key. Other move directions are also pitched accordingly.
It allows smoother and more complex movements.
Can be enabled/disabled by L key by default (set keymap_pitchfly in minetest.conf)
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index ccb57520c..173b85c70 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -26,6 +26,10 @@ # type: bool # free_move = false +# If enabled together with fly mode, makes move directions relative to the player's pitch. +# type: bool +# pitch_fly = false + # Fast movement (via the "special" key). # This requires the "fast" privilege on the server. # type: bool @@ -194,6 +198,11 @@ # type: key # keymap_freemove = KEY_KEY_K +# Key for toggling pitch fly mode. +# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 +# type: key +# keymap_pitchfly = KEY_KEY_L + # Key for toggling fast mode. # See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3 # type: key |