mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Enable subtle fall bobbing (#7856)
Set the default value of fall_bobbing_amount to 0.03
This commit is contained in:
parent
81d55338fa
commit
98ee08904b
2 changed files with 2 additions and 2 deletions
|
@ -629,7 +629,7 @@ view_bobbing_amount (View bobbing factor) float 1.0
|
||||||
|
|
||||||
# Multiplier for fall bobbing.
|
# Multiplier for fall bobbing.
|
||||||
# For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
|
# For example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.
|
||||||
fall_bobbing_amount (Fall bobbing factor) float 0.0
|
fall_bobbing_amount (Fall bobbing factor) float 0.03
|
||||||
|
|
||||||
# 3D support.
|
# 3D support.
|
||||||
# Currently supported:
|
# Currently supported:
|
||||||
|
|
|
@ -176,7 +176,7 @@ void set_default_settings(Settings *settings)
|
||||||
settings->setDefault("cinematic_camera_smoothing", "0.7");
|
settings->setDefault("cinematic_camera_smoothing", "0.7");
|
||||||
settings->setDefault("enable_clouds", "true");
|
settings->setDefault("enable_clouds", "true");
|
||||||
settings->setDefault("view_bobbing_amount", "1.0");
|
settings->setDefault("view_bobbing_amount", "1.0");
|
||||||
settings->setDefault("fall_bobbing_amount", "0.0");
|
settings->setDefault("fall_bobbing_amount", "0.03");
|
||||||
settings->setDefault("enable_3d_clouds", "true");
|
settings->setDefault("enable_3d_clouds", "true");
|
||||||
settings->setDefault("cloud_radius", "12");
|
settings->setDefault("cloud_radius", "12");
|
||||||
settings->setDefault("menu_clouds", "true");
|
settings->setDefault("menu_clouds", "true");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue