I'm trying to set an animator's playback time. (or, start an animation at a specific time) I haven't had success with either approach.
Note: I am setting the Animator (an) in the Start().
Code I've tried:
Public Animator an;
public void SetTime(float time)
{
an.playbackTime = time;
}