[Unity] Fix SkeletonGraphic incompatible version fallback.

This commit is contained in:
pharan 2016-08-02 16:30:21 +08:00
parent 2a32c3e113
commit 18d7229b5d

View File

@ -209,6 +209,11 @@ namespace Spine.Unity {
}
}
#endregion
#else
public Skeleton Skeleton { get { return null; } }
public AnimationState AnimationState { get { return null; } }
public event UpdateBonesDelegate UpdateLocal, UpdateWorld, UpdateComplete;
public void LateUpdate () { }
#endif
}
}