aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhomer6662017-10-23 16:18:15 +1100
committerhomer6662017-10-23 16:18:15 +1100
commit0be1c893b028495b310aa8c2ec6fb6640c9d33cf (patch)
treefbfc598c4cb0dbe8665b8a344131125b7ef91e69
parentc40eea876e0ad5a17ff079086138c29a5668c3ee (diff)
downloadgodot-0be1c893b028495b310aa8c2ec6fb6640c9d33cf.tar.gz
godot-0be1c893b028495b310aa8c2ec6fb6640c9d33cf.tar.zst
godot-0be1c893b028495b310aa8c2ec6fb6640c9d33cf.zip
Reduce default orbit inertia value
-rw-r--r--editor/editor_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp
index 7c45e19f5..e394c6e2a 100644
--- a/editor/editor_settings.cpp
+++ b/editor/editor_settings.cpp
@@ -705,7 +705,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
_initial_set("editors/3d/navigation_feel/orbit_sensitivity", 0.4);
hints["editors/3d/navigation_feel/orbit_sensitivity"] = PropertyInfo(Variant::REAL, "editors/3d/navigation_feel/orbit_sensitivity", PROPERTY_HINT_RANGE, "0.0, 2, 0.01");
- _initial_set("editors/3d/navigation_feel/orbit_inertia", 0.15);
+ _initial_set("editors/3d/navigation_feel/orbit_inertia", 0.05);
hints["editors/3d/navigation_feel/orbit_inertia"] = PropertyInfo(Variant::REAL, "editors/3d/navigation_feel/orbit_inertia", PROPERTY_HINT_RANGE, "0.0, 1, 0.01");
_initial_set("editors/3d/navigation_feel/translation_inertia", 0.15);
hints["editors/3d/navigation_feel/translation_inertia"] = PropertyInfo(Variant::REAL, "editors/3d/navigation_feel/translation_inertia", PROPERTY_HINT_RANGE, "0.0, 1, 0.01");