[unity] Fixed a warning occurring in newer Unity versions, two static extension method classes named SkeletonExtensions in different namespaces but the same file.

This commit is contained in:
Harald Csaszar 2020-07-14 17:01:52 +02:00
parent 84443288b5
commit 844d13d1ef

View File

@ -442,7 +442,7 @@ namespace Spine {
}
}
public static class SkeletonExtensions {
public static class SpineSkeletonExtensions {
public static bool IsWeighted (this VertexAttachment va) {
return va.bones != null && va.bones.Length > 0;
}