pauseAllActions() on the node does not pause a Spine skeleton. Use the paused property:
1 | const skeleton = this.spineNode.getComponent(sp.Skeleton); |
This resumes from the paused position. To stop and replay from the beginning:
1 | function stop() { skeleton.clearTrack(0); } |