Browse Source

Deselect nodes in the 3D editor when pressing ESC

Marcus Brummer 3 năm trước cách đây
mục cha
commit
55fda17742
1 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 6 1
      editor/plugins/node_3d_editor_plugin.cpp

+ 6 - 1
editor/plugins/node_3d_editor_plugin.cpp

@@ -1888,7 +1888,12 @@ void Node3DEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
 			}
 		}
 
-		if (_edit.mode != TRANSFORM_NONE) {
+		if (_edit.mode == TRANSFORM_NONE) {
+			if (k->get_keycode() == Key::ESCAPE && !cursor.region_select) {
+				_clear_selected();
+				return;
+			}
+		} else {
 			// We're actively transforming, handle keys specially
 			TransformPlane new_plane = TRANSFORM_VIEW;
 			String new_message;