aboutsummaryrefslogtreecommitdiff
path: root/editor/plugins/spatial_editor_plugin.cpp
diff options
context:
space:
mode:
authortoger52017-09-19 01:34:19 +0200
committertoger52017-09-19 02:34:44 +0200
commit117eb16adb98ac71f17029d33058858468581ba3 (patch)
treebc33a5652cd8c9c86a2cee87543244fde188f87d /editor/plugins/spatial_editor_plugin.cpp
parent1a8a80368edb544780878ff4fd3d650024f5e60e (diff)
downloadgodot-117eb16adb98ac71f17029d33058858468581ba3.tar.gz
godot-117eb16adb98ac71f17029d33058858468581ba3.tar.zst
godot-117eb16adb98ac71f17029d33058858468581ba3.zip
update inertia/freelook settings values + renamed free_orbit... to
oribit...
Diffstat (limited to '')
-rw-r--r--editor/plugins/spatial_editor_plugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/plugins/spatial_editor_plugin.cpp b/editor/plugins/spatial_editor_plugin.cpp
index 69c5cd1a2..894a3d111 100644
--- a/editor/plugins/spatial_editor_plugin.cpp
+++ b/editor/plugins/spatial_editor_plugin.cpp
@@ -77,11 +77,11 @@ void SpatialEditorViewport::_update_camera(float p_interp_delta) {
camera->set_perspective(get_fov(), get_znear(), get_zfar());
//when not being manipulated, move softly
- float free_orbit_inertia = EDITOR_DEF("editors/3d/free_orbit_inertia", 0.15);
- float free_translation_inertia = EDITOR_DEF("editors/3d/free_translation_inertia", 0.15);
+ float free_orbit_inertia = EDITOR_DEF("editors/3d/orbit_inertia", 0.15);
+ float free_translation_inertia = EDITOR_DEF("editors/3d/translation_inertia", 0.15);
//when being manipulated, move more quickly
- float manip_orbit_inertia = EDITOR_DEF("editors/3d/manipulation_orbit_inertia", 0.075);
- float manip_translation_inertia = EDITOR_DEF("editors/3d/manipulation_translation_inertia", 0.075);
+ float manip_orbit_inertia = EDITOR_DEF("editors/3d/manipulation_orbit_inertia", 0.1);
+ float manip_translation_inertia = EDITOR_DEF("editors/3d/manipulation_translation_inertia", 0.1);
float zoom_inertia = EDITOR_DEF("editors/3d/zoom_inertia", 0.0);