From 746a3decc8b17c5e8da766a3546b9d1cbe443182 Mon Sep 17 00:00:00 2001 From: ww-rm Date: Mon, 18 Aug 2025 18:47:39 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E6=8F=92=E6=A7=BD=E5=8F=AF?= =?UTF-8?q?=E8=A7=81=E6=80=A7=E5=B1=9E=E6=80=A7=E5=80=BC=E6=8B=B7=E8=B4=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Spine/SpineObject.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Spine/SpineObject.cs b/Spine/SpineObject.cs index 6914208..5854cc2 100644 --- a/Spine/SpineObject.cs +++ b/Spine/SpineObject.cs @@ -172,9 +172,12 @@ namespace Spine _skinLoadStatus = other._skinLoadStatus.ToDictionary(); ReloadSkins(); - // 拷贝自定义插槽附件加载情况 + // 拷贝插槽属性值 for (int i = 0; i < other._skeleton.Slots.Length; i++) + { _skeleton.Slots[i].Attachment = other._skeleton.Slots[i].Attachment; + _skeleton.Slots[i].Disabled = other._skeleton.Slots[i].Disabled; + } // 拷贝调试属性 EnableDebug = other.EnableDebug;