@esotericsoftware/spine-canvas 4.2.37 → 4.2.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3929,7 +3929,7 @@ var spine = (() => {
3929
3929
  complete = true;
3930
3930
  else {
3931
3931
  const cycles = Math.floor(entry.trackTime / duration);
3932
- complete = cycles > 0 && cycles > Math.floor(entry.trackTime / duration);
3932
+ complete = cycles > 0 && cycles > Math.floor(entry.trackLast / duration);
3933
3933
  }
3934
3934
  } else
3935
3935
  complete = animationTime >= animationEnd && entry.animationLast < animationEnd;