Animator how to return to start position

Hi, I just want to do something like that :

  • Animator.Play(“…”);
  • Animator.SETBACKANIMATION(“…”);

-Animator.Play(“…”);

I searched for it during a while but did not find an answer…

Thank you

You can set the playback time back to zero.

private Animator _animator;

// In Animator manager method.
_animator.playbackTime = 0f;

seem logical but nor working, my object is still at final place…

This is working to start from 0

animator.Play(“…”, -1, 0f)

But I need to make animation stay to starting position and then play it in a second time

It could be ok to manually fix position but even this seem difficult… Animator is locking them…