Is it possible to freeze an animation in a pose while it is playing?

Hello everyone, I am a beginner and I have never handled the animations before. But I would like to know if we can freeze the character in a special pose of the animation in progress, or if it is necessary to make several animations of each position in order to load them in turn?

Here’s what I’m working on, a sword fighting system. If you could enlighten me on this question, or bring me alternatives and knowledge on how to manipulate animations, I would be very grateful.

https://streamable.com/ys2aec

1 Like

Yes. If you look through the AnimationTrack API, you’ll see the method AdjustSpeed, pass 0 in to freeze the animation. You will ideally need an event marker or named keyframe in your animation to do this, which can be added from the Animation Editor plugin of your choice.

6 Likes

Ah yes indeed, thank you very much this is exactly what I was looking for!