Skip to content

Commit 538af97

Browse files
rubenwardyest31
authored andcommittedJul 5, 2016
Remove cinematic toggle on F8
Also update cinematic mode's description to include mouse
1 parent 5d4d3f8 commit 538af97

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed
 

‎builtin/settingtypes.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fast_move (Fast movement) bool false
7070
# This requires the "noclip" privilege on the server.
7171
noclip (Noclip) bool false
7272

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

@@ -178,7 +178,7 @@ keymap_noclip (Noclip key) key KEY_KEY_H
178178

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

183183
# Key for toggling display of minimap.
184184
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3

‎minetest.conf.example

+2-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# type: bool
3939
# noclip = false
4040

41-
# Smooths camera when moving and looking around.
41+
# Smooths camera when looking around. Also called look or mouse smoothing.
4242
# Useful for recording videos.
4343
# type: bool
4444
# cinematic = false
@@ -162,7 +162,7 @@
162162
# Key for toggling cinematic mode.
163163
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
164164
# type: key
165-
# keymap_cinematic = KEY_F8
165+
# keymap_cinematic =
166166

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

15281528
# type: string
15291529
# modstore_details_url = https://forum.minetest.net/mmdb/mod/*/
1530-

‎src/defaultsettings.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void set_default_settings(Settings *settings)
5050
settings->setDefault("keymap_freemove", "KEY_KEY_K");
5151
settings->setDefault("keymap_fastmove", "KEY_KEY_J");
5252
settings->setDefault("keymap_noclip", "KEY_KEY_H");
53-
settings->setDefault("keymap_cinematic", "KEY_F8");
53+
settings->setDefault("keymap_cinematic", "");
5454
settings->setDefault("keymap_screenshot", "KEY_F12");
5555
settings->setDefault("keymap_toggle_hud", "KEY_F1");
5656
settings->setDefault("keymap_toggle_chat", "KEY_F2");

0 commit comments

Comments
 (0)
Please sign in to comment.