Skip to content

Commit 98ee089

Browse files
HybridDogSmallJoker
authored andcommittedNov 12, 2018
Enable subtle fall bobbing (#7856)
Set the default value of fall_bobbing_amount to 0.03
1 parent 81d5533 commit 98ee089

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎builtin/settingtypes.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ view_bobbing_amount (View bobbing factor) float 1.0
629629

630630
# Multiplier for fall bobbing.
631631
# For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
632-
fall_bobbing_amount (Fall bobbing factor) float 0.0
632+
fall_bobbing_amount (Fall bobbing factor) float 0.03
633633

634634
# 3D support.
635635
# Currently supported:

‎src/defaultsettings.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ void set_default_settings(Settings *settings)
176176
settings->setDefault("cinematic_camera_smoothing", "0.7");
177177
settings->setDefault("enable_clouds", "true");
178178
settings->setDefault("view_bobbing_amount", "1.0");
179-
settings->setDefault("fall_bobbing_amount", "0.0");
179+
settings->setDefault("fall_bobbing_amount", "0.03");
180180
settings->setDefault("enable_3d_clouds", "true");
181181
settings->setDefault("cloud_radius", "12");
182182
settings->setDefault("menu_clouds", "true");

0 commit comments

Comments
 (0)