- Home /
What's the use of the Animator.PlayInFixedTime() function?
i was messing around with Animator, then i found this func, how does this works? And what's the difference between Animator.Play and Animator.PlayInFixedTime(); ?
I think it runs at a set number of frames per second Rather than running as many times as it can per second
Answer by Pangamini · Jan 23 at 01:01 AM
It runs in sync with FixedUpdate, which runs in sync with physics (by default, at least) It's the correct way if you want to animate some kinematic rigidbodies that interact / collide with others, for example.
Your answer
Follow this Question
Related Questions
Object modified in script not modified in scene 0 Answers
How i get my cloud position in other script? I want to use this temp value in other script. 1 Answer
"left is not set up when it is set up under input. / Axes / horizontal...." 1 Answer
Fading in and out gui text possible? 1 Answer
WaitForSeconds - Shooting Script 3 Answers