I'm using spine js runtime.
This is my code:
anim.setMix('animation1' , 'animation2' , 0.1);
anim.setAnimation(0 , 'animation1', false);
anim.addAnimation(0 , 'animation2' , true , 0);
When i set a mix animation , the onComplete callback of animation1 will not triggered, what's wrong?
I want call the setAnimation when the animation1 complete.