how to play ananimtion from a cirten frame

I am trying to play a animation from a spisific frame I am trying to play it like this Animator.PlayInFixedTime(walk_Only_Legs, 0, currentFrame); but it only plays at the end I have checked that the CurrentFrame varable changes plz help

I’m just guessing your issue here.

Your title is about playing from a certain frame. The last argument should be the part of the animation you want in seconds. If you wanted to start on frame 23, and gave 23f for the last argument, you’d be way off, probably after the end of your clip.

If you want frame 23, you need to calculate it. I think that would be something like desiredTime = desiredFrame / (clip.frameRate * animator.speed).

would animator do speed be normalized time?