Hi,
I am here again with problems partially related to the SkeletonAnimation.Update(0) call.
I checked the documentation here https://esotericsoftware.com/spine-api-reference#AnimationState-addAnimation2 and understand that AddAnimation should behave like SetAnimation in this case, but that does not explain following behavior. See the comments in example code:
private void Update ()
{
if (Input.GetKeyDown(KeyCode.K))
StartCoroutine(Testing());
}
private IEnumerator Testing()
{
skeletonAnimation.AnimationState.SetAnimation(0, animationReference, false);
yield return new WaitForSeconds(1f);
skeletonAnimation.AnimationState.SetEmptyAnimation(0, 0);
skeletonAnimation.Update(0); // Observe the change in behavior when there is Update or not
yield return null;
yield return null; // For bug to appear it is also required to wait at least 2 frames
//Debug.Break();
skeletonAnimation.AnimationState.AddAnimation(0, animationReference, false, 0.2f);
// If Update(0) is not called, we see empty track progressing up to 0.2s delay, then mixing to new animation - this is correct
// If Update(0) is called, the new animation is set directly but not progressing time up until 0.2s delay - this is wrong, why?
// Also, you can change SetEmptyAnimation and Update lines for:
// skeletonAnimation.AnimationState.ClearTrack(0);
// Which produce the same behavior
// You can also try removing the very first call to SetAnimation, then it works bad even without calling Update(0)
// So there are multiple options how to produce the problem
}