mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
update inertia/freelook settings values + renamed free_orbit... to
oribit...
This commit is contained in:
parent
1a8a80368e
commit
117eb16adb
2 changed files with 22 additions and 13 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue