• Editor
  • Mix different animations in different frames

I have such a doubt about mix different animations. Such as when i playing spineboy walk animation, i need to change to jump animation, but, jump animation doesn't start at first frame, i need jump animation start at 10th frame. 🙂 . Spine run times can support that?

another question is, i have found that spine animation play 30 frames in 1s in normal state. if i need animation play 60 frames in 1s, it's mean that i need to set timeScale to 2.0f?

Related Discussions
...
TrackEntry entry = state.setAnimation(0, "drawOrder", true);
entry.time = 0.333f; // time to start animation

For 10 frames use 10 / 30 = 0.333.

Spine uses 30fps in the editor. This is just a guide to help the animator. At runtime it uses time in seconds as a float. There is no notion of individual frames at runtime, everything is interpolated.

i think better better way for question 1 is to use event and put it on frame 10