From 713a428960c61018c1ef19603331c285708dcaf1 Mon Sep 17 00:00:00 2001 From: geondo55 <102933884+geondo55@users.noreply.github.com> Date: Fri, 27 Jun 2025 10:37:30 +0900 Subject: [PATCH] =?UTF-8?q?Object=20Info=20Panel=EC=9D=B4=20Hierarchy=20On?= =?UTF-8?q?Off=EC=97=90=20=EB=94=B0=EB=9D=BC=20=EA=B0=99=EC=9D=B4=20?= =?UTF-8?q?=EA=BA=BC=EC=A7=80=EB=8A=94=20=EB=AC=B8=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Runtime Package Common/Camera/RTFocusCamera.cs | 1 - Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/ExternalAssets/Runtime Transform Gizmos/Runtime Package Common/Camera/RTFocusCamera.cs b/Assets/Scripts/ExternalAssets/Runtime Transform Gizmos/Runtime Package Common/Camera/RTFocusCamera.cs index 0348c6d5..4e1983c9 100644 --- a/Assets/Scripts/ExternalAssets/Runtime Transform Gizmos/Runtime Package Common/Camera/RTFocusCamera.cs +++ b/Assets/Scripts/ExternalAssets/Runtime Transform Gizmos/Runtime Package Common/Camera/RTFocusCamera.cs @@ -352,7 +352,6 @@ namespace RTG float moveSpeed = RTInput.GetKey(KeyCode.LeftShift) ? _moveSettings.MoveFastSpeed : _moveSettings.MoveSpeed; float moveAmount = (moveSpeed + _currentAcceleration) * Time.deltaTime; - Debug.Log("moveSpeed " + moveAmount); Vector3 moveVector = Vector3.zero; _moveDirFlags[(int)MoveDirection.Forward] = Hotkeys.MoveForward.IsActive(); _moveDirFlags[(int)MoveDirection.Backwards] = !_moveDirFlags[(int)MoveDirection.Forward] && Hotkeys.MoveBack.IsActive(); diff --git a/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs b/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs index 0be4570f..05869bb3 100644 --- a/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs +++ b/Assets/Scripts/Studio/AssetTool/RenderObjectHandler.cs @@ -57,6 +57,7 @@ namespace Studio.AssetTool EventSystem.current.RaycastAll(pointerData, raycastResults); if (raycastResults.Any(x => x.gameObject.layer == uiLayer)) { + lockHandler = true; return; } CanvasManager.instance.GetCanvas().panel_draghandler.OnBeginDrag(clickBeginPos); -- 2.48.1.windows.1