From b7735d9ba87fde5aabe163936c992951eaca5de6 Mon Sep 17 00:00:00 2001 From: ww-rm Date: Tue, 1 Apr 2025 21:07:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E6=88=90=E5=B9=B6=E9=9B=86=E5=8A=A8?= =?UTF-8?q?=E7=94=BB=E7=9A=AE=E8=82=A4=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SpineViewer/Spine/TypeConverter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SpineViewer/Spine/TypeConverter.cs b/SpineViewer/Spine/TypeConverter.cs index e0968fc..e292667 100644 --- a/SpineViewer/Spine/TypeConverter.cs +++ b/SpineViewer/Spine/TypeConverter.cs @@ -39,7 +39,7 @@ namespace SpineViewer.Spine { IEnumerable common = spines[0].AnimationNames; foreach (var spine in spines.Skip(1)) - common = common.Intersect(spine.AnimationNames); + common = common.Union(spine.AnimationNames); return new StandardValuesCollection(common.ToArray()); } } @@ -65,7 +65,7 @@ namespace SpineViewer.Spine { IEnumerable common = spines[0].SkinNames; foreach (var spine in spines.Skip(1)) - common = common.Intersect(spine.SkinNames); + common = common.Union(spine.SkinNames); return new StandardValuesCollection(common.ToArray()); } }