From bec36bcbe392c02d43e47d37d50fc4066ac33942 Mon Sep 17 00:00:00 2001 From: wsh Date: Tue, 18 Mar 2025 17:18:48 +0900 Subject: [PATCH] 0.22.6 --- Assets/Scripts/Studio/UI/TreeView/CustomScrollRect.cs | 3 +++ README.md | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/Studio/UI/TreeView/CustomScrollRect.cs b/Assets/Scripts/Studio/UI/TreeView/CustomScrollRect.cs index 316469ba..cfe1e1c1 100644 --- a/Assets/Scripts/Studio/UI/TreeView/CustomScrollRect.cs +++ b/Assets/Scripts/Studio/UI/TreeView/CustomScrollRect.cs @@ -24,6 +24,9 @@ namespace XED.Hierarchy private Coroutine coroutinePendPopup; public override void OnBeginDrag(PointerEventData eventData) { + if (eventData.button != PointerEventData.InputButton.Left) + return; + ScrollItemUI itemUI = GetTargetItemUI(eventData); if (itemUI != null && !itemUI.isSelected) { diff --git a/README.md b/README.md index 6f24af0f..748b6a08 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ -### 0.22.1 03-18 +### 0.22.6 03-18 ``` 1. 검색용 자료구조 Trie 추가 +2. 자산 목록창 아이템 드래그시 해당 아이템이 하이라이트(선택) 되도록 수정 +3. 하이어라키 트리 UI 에 드래그/드랍 권한 추가하여 자산 목록창에서 기존 하이어라키 계층구조 기능 접근 제어 +4. 자산 속성 창에 닫기 버튼 추가 +5. 자산 목록창 닫기시에 기존에 선택되어있던 자산 아이템이 선택 취소(언라이트) 되도록 수정 ``` ### 0.21.1 03-12