Restored IsAnimationPlaying in actions.ts.

This commit is contained in:
Davide Tantillo 2026-02-06 10:54:28 +01:00
parent 731aa2bdf1
commit 1fd2c858ca

View File

@ -54,4 +54,7 @@ C3.Plugins.EsotericSoftware_SpineConstruct3.Cnds =
IsInsideSlot (this: SpineC3Instance, x: number, y: number, slotName: string) {
return this.isInsideSlot(x, y, slotName);
},
IsAnimationPlaying (this: SpineC3Instance, animationName: string, trackIndex: number) {
return this.isAnimationPlaying(animationName, trackIndex);
},
};