diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-24 09:11:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 09:11:50 +0200 |
commit | 4af59c5b3ffddab769c47ce2d0a2988b979fa54d (patch) | |
tree | 25006663a83056867adde926179c4ff7d551f159 | |
parent | fffaec9da967279918ce2a0671d02d87407d5fb1 (diff) | |
parent | 0be1c893b028495b310aa8c2ec6fb6640c9d33cf (diff) |
Merge pull request #12340 from homer666/orbit-inertia-toned-down
Reduce default orbit inertia value
[ci skip]
-rw-r--r-- | editor/editor_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 64febd24ba..799a8a2eb8 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -706,7 +706,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"); |