From dfcc71eb69aa97f44881aff3036b3420415b9686 Mon Sep 17 00:00:00 2001 From: geondo55 <102933884+geondo55@users.noreply.github.com> Date: Tue, 15 Jul 2025 12:04:51 +0900 Subject: [PATCH] =?UTF-8?q?Gizmo=20=EB=8B=A8=EC=B6=95=ED=82=A4=20=EC=9C=A0?= =?UTF-8?q?=EB=8B=88=ED=8B=B0=EC=99=80=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs b/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs index 05869bb3..bfd20898 100644 --- a/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs +++ b/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs @@ -417,10 +417,10 @@ namespace Studio.AssetTool upKeyActions.Add(KeyCode.Mouse0, OnMousePointerUp); downKeyActions.Add(KeyCode.Mouse1, OnMouseRightPointerDown); upKeyActions.Add(KeyCode.Mouse1, OnMouseRightPointerUp); - downKeyActions.Add(KeyCode.Q, () => SetGizmoChangedCommand(new ActivateMoveGizmoCommand())); - downKeyActions.Add(KeyCode.W, () => SetGizmoChangedCommand(new ActivateRotateGizmoCommand())); - downKeyActions.Add(KeyCode.E, () => SetGizmoChangedCommand(new ActivateScaleGizmoCommand())); - downKeyActions.Add(KeyCode.R, () => SetGizmoChangedCommand(new ResetGizmoCommand())); + downKeyActions.Add(KeyCode.W, () => SetGizmoChangedCommand(new ActivateMoveGizmoCommand())); + downKeyActions.Add(KeyCode.E, () => SetGizmoChangedCommand(new ActivateRotateGizmoCommand())); + downKeyActions.Add(KeyCode.R, () => SetGizmoChangedCommand(new ActivateScaleGizmoCommand())); + //downKeyActions.Add(KeyCode.R, () => SetGizmoChangedCommand(new ResetGizmoCommand())); downKeyActions.Add(KeyCode.Delete, () => CommandInvoker.instance.Invoke(new RemoveSelectObjectCommand())); getKeyActions.Add(KeyCode.V, VertexSnap); -- 2.48.1.windows.1