How to animate once per FixedUpdate instead of per Update

As far as I know , the animation is play once per Update.

How can I make it play once per FixedUpdate? So that I can control them through Time.timeScale

1 Answer

1

FixedUpdate is for physics and isn’t related to animation. Time.timeScale affects everything anyway, including animations.