浏览代码

Merge pull request #40632 from asmaloney/macos-maya-scroll

[macOS] Fix Maya navigation with ALT + mouse scroll
Rémi Verschelde 5 年之前
父节点
当前提交
c853dd5ddb
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      editor/plugins/node_3d_editor_plugin.cpp

+ 4 - 4
editor/plugins/node_3d_editor_plugin.cpp

@@ -1928,22 +1928,22 @@ void Node3DEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
 
 		switch (nav_mode) {
 			case NAVIGATION_PAN: {
-				_nav_pan(m, pan_gesture->get_delta());
+				_nav_pan(pan_gesture, pan_gesture->get_delta());
 
 			} break;
 
 			case NAVIGATION_ZOOM: {
-				_nav_zoom(m, pan_gesture->get_delta());
+				_nav_zoom(pan_gesture, pan_gesture->get_delta());
 
 			} break;
 
 			case NAVIGATION_ORBIT: {
-				_nav_orbit(m, pan_gesture->get_delta());
+				_nav_orbit(pan_gesture, pan_gesture->get_delta());
 
 			} break;
 
 			case NAVIGATION_LOOK: {
-				_nav_look(m, pan_gesture->get_delta());
+				_nav_look(pan_gesture, pan_gesture->get_delta());
 
 			} break;