Can I start spine animation at a specific frame?

Hello!
Can someone tell please can I start spine animation at a specific frame like I can do with sprite animation toggling startFrame parameter?
Or maybe consider not a frame, but something like progress state. For example, If I set progress state to 0.1, my anim start playing from 0.1 moment of progress.

spine.play('anim');

// Ahead 500ms
spine.preUpdate(0, 500);
1 Like

Bless you.