1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Make panning the 3D view with trackpad goes the right way

This commit is contained in:
ajreckof
2023-06-04 23:19:29 +02:00
parent db5113de36
commit 05dd9c0f8b

View File

@@ -2096,7 +2096,7 @@ void Node3DEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
switch (nav_mode) {
case NAVIGATION_PAN: {
_nav_pan(pan_gesture, pan_gesture->get_delta());
_nav_pan(pan_gesture, -pan_gesture->get_delta());
} break;
@@ -2106,7 +2106,7 @@ void Node3DEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
} break;
case NAVIGATION_ORBIT: {
_nav_orbit(pan_gesture, pan_gesture->get_delta());
_nav_orbit(pan_gesture, -pan_gesture->get_delta());
} break;