Skip to content

Commit

Permalink
Remove cinematic toggle on F8
Browse files Browse the repository at this point in the history
Also update cinematic mode's description to include mouse
  • Loading branch information
rubenwardy authored and est31 committed Jul 5, 2016
1 parent 5d4d3f8 commit 538af97
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions builtin/settingtypes.txt
Expand Up @@ -70,7 +70,7 @@ fast_move (Fast movement) bool false
# This requires the "noclip" privilege on the server.
noclip (Noclip) bool false

# Smooths camera when moving and looking around.
# Smooths camera when looking around. Also called look or mouse smoothing.
# Useful for recording videos.
cinematic (Cinematic mode) bool false

Expand Down Expand Up @@ -178,7 +178,7 @@ keymap_noclip (Noclip key) key KEY_KEY_H

# Key for toggling cinematic mode.
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
keymap_cinematic (Cinematic mode key) key KEY_F8
keymap_cinematic (Cinematic mode key) key

# Key for toggling display of minimap.
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
Expand Down
5 changes: 2 additions & 3 deletions minetest.conf.example
Expand Up @@ -38,7 +38,7 @@
# type: bool
# noclip = false

# Smooths camera when moving and looking around.
# Smooths camera when looking around. Also called look or mouse smoothing.
# Useful for recording videos.
# type: bool
# cinematic = false
Expand Down Expand Up @@ -162,7 +162,7 @@
# Key for toggling cinematic mode.
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
# type: key
# keymap_cinematic = KEY_F8
# keymap_cinematic =

# Key for toggling display of minimap.
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
Expand Down Expand Up @@ -1527,4 +1527,3 @@

# type: string
# modstore_details_url = https://forum.minetest.net/mmdb/mod/*/

2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Expand Up @@ -50,7 +50,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("keymap_freemove", "KEY_KEY_K");
settings->setDefault("keymap_fastmove", "KEY_KEY_J");
settings->setDefault("keymap_noclip", "KEY_KEY_H");
settings->setDefault("keymap_cinematic", "KEY_F8");
settings->setDefault("keymap_cinematic", "");
settings->setDefault("keymap_screenshot", "KEY_F12");
settings->setDefault("keymap_toggle_hud", "KEY_F1");
settings->setDefault("keymap_toggle_chat", "KEY_F2");
Expand Down

0 comments on commit 538af97

Please sign in to comment.