Character Movement in FixedUpdate with Animation Rigging?

Hi there,

Because my character interacts with the physics system, I need to move my character in FixedUpdate. Unfortunately, this causes all transforms constrained by the animation rig to jitter when moving.

What is the recommended approach to character movement when using Animation Rigging?

Bump

Hi,

Have you tried setting the update mode on your Animator to Animate Physics?

7965984--1021350--Screen Shot 2022-03-15 at 1.45.01 PM.png

This option will make your animation evaluate in fixed update time rather than in the normal game logic update loop.
You can refer to the following page for more information on Unity order of execution.

Hi Simon! This works well, however, now animations appear to be much “floatier”, as I’m assuming because calculations are being made less often.