From 06687a359597bc9639c2910dbf87c32e47cbc31b Mon Sep 17 00:00:00 2001 From: John Date: Mon, 11 Jan 2016 20:42:51 +0800 Subject: [PATCH] Removed GetSkeleton. Still has .Skeleton property. --- spine-unity/Assets/spine-unity/SkeletonAnimator.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/spine-unity/Assets/spine-unity/SkeletonAnimator.cs b/spine-unity/Assets/spine-unity/SkeletonAnimator.cs index 0fb1b9482..51e8b724b 100644 --- a/spine-unity/Assets/spine-unity/SkeletonAnimator.cs +++ b/spine-unity/Assets/spine-unity/SkeletonAnimator.cs @@ -15,10 +15,6 @@ public class SkeletonAnimator : SkeletonRenderer, ISkeletonAnimation { public enum MixMode { AlwaysMix, MixNext, SpineStyle } public MixMode[] layerMixModes = new MixMode[0]; - public Skeleton GetSkeleton () { - return this.skeleton; - - } public event UpdateBonesDelegate UpdateLocal { add { _UpdateLocal += value; } remove { _UpdateLocal -= value; } @@ -206,4 +202,4 @@ public class SkeletonAnimator : SkeletonRenderer, ISkeletonAnimation { return clipNameHashCode; } -} \ No newline at end of file +}