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);