From 608656bb83d212839442e6278b2cf9bd9aee191c Mon Sep 17 00:00:00 2001 From: Savya Bikram Shah Date: Thu, 25 Jun 2026 11:23:06 +0545 Subject: [PATCH] Done --- .DS_Store | Bin 14340 -> 16388 bytes .../Editor/Utility/SpineEditorUtilities.cs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.DS_Store b/.DS_Store index ebeee33b9f0de02af0c45123f0a20c1d14d27339..8e312411e1be07082d2ca3c366ca58a7aee0d572 100644 GIT binary patch delta 684 zcmZuv&ubG=5dL1W`PEd@B}spn(mdTXV4F5c8zrF!TTAP~ih&dnaxo@rSgf0nXrYxt zDaDhQIQ3{Lc=A~G=pSGXJ%|@iig!Uh37&M`3JTV@yq$S7Z@!uL&Fr`LcSQ<-xcaD( z2a2o)c`G?I$YwrBmbq{*H67n!tHutX0~2>qLl-9L;w9w@n$M%W6wOwJk4}a!d&F6) zXRE#l)?hih@cNxVPz#Dt$1^gf`82F^?7?{>8d4e_pp6Yie8_s2Rxc#=Q+B$O+KZJg z&1d9XzPOW-k4tm8j4bAI^gT8IpX-Imn}gM6$7)pCwYp_D>FMN2{I*qZ*%fQsG_HK( zf_WK>*QuSJEj6WkT(?`c844MTW%sD~n8p%r;1=#<8$Ga-y#}QXG4ouzcqgl0F(qeFpbnF{xdCep}H>MXJ6 z7~B|w8GI)eDo-}BVPRziO0rD;V_-MgPr-6=iUj*+b`BN}MzhUUh6mUt=KvWz0+K9~ z7l}(w<}>HtJW2cn%VutcOU#>XRVH#x?$HsMY@|PBvM^)BH^JIP-Lq>+lHayZCOb|C)Oir+wx;avnn;8Jf2P(J# diff --git a/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineEditorUtilities.cs b/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineEditorUtilities.cs index 5c8016b..de035db 100644 --- a/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineEditorUtilities.cs +++ b/Assets/Spine/Editor/spine-unity/Editor/Utility/SpineEditorUtilities.cs @@ -379,7 +379,6 @@ namespace Spine.Unity.Editor { var eventType = current.type; bool isDraggingEvent = eventType == EventType.DragUpdated; bool isDropEvent = eventType == EventType.DragPerform; - UnityEditor.DragAndDrop.visualMode = DragAndDropVisualMode.Copy; if (isDraggingEvent || isDropEvent) { var mouseOverWindow = EditorWindow.mouseOverWindow; @@ -390,6 +389,7 @@ namespace Spine.Unity.Editor { if (references.Length == 1) { var skeletonDataAsset = references[0] as SkeletonDataAsset; if (skeletonDataAsset != null && skeletonDataAsset.GetSkeletonData(true) != null) { + UnityEditor.DragAndDrop.visualMode = DragAndDropVisualMode.Copy; // Allow drag-and-dropping anywhere in the Hierarchy Window. // HACK: string-compare because we can't get its type via reflection.