From 3b7cb00af2024c2cbf3228127aa29eefa7cadf28 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Sun, 12 Jan 2025 21:41:24 -0600 Subject: [PATCH] Add shift to continue selection --- Source/Editor/Viewport/MainEditorGizmoViewport.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Source/Editor/Viewport/MainEditorGizmoViewport.cs b/Source/Editor/Viewport/MainEditorGizmoViewport.cs index 885251a7d..a709ffe6e 100644 --- a/Source/Editor/Viewport/MainEditorGizmoViewport.cs +++ b/Source/Editor/Viewport/MainEditorGizmoViewport.cs @@ -663,6 +663,14 @@ namespace FlaxEditor.Viewport } Select(newSelection); } + else if (((WindowRootControl)Root).GetKey(KeyboardKeys.Shift)) + { + var newSelection = new List(); + var currentSelection = _editor.SceneEditing.Selection; + newSelection.AddRange(hits); + newSelection.AddRange(currentSelection); + Select(newSelection); + } else { Select(hits);