Is there an equivalent to MonoBehaviour.OnAnimatorIK BUT for Mirror??

Hey I couldn’t find this anywhere on the internet
The MonoBehaviour.OnAnimatorIK() function, it works on server/client but not on other clients USING mirror?
Is there an alternative to this function BUT for the Mirror network?
Thanks, appreciate it guys!

Here’s my OnAnimatorIK code that doesn’t work on the other clients besides server

Have you solved the problem yet

Best to not use NetworkAnimator. It’s a leftover from the UNET days. Useful to get started, but imho just sync your state to clients and feed it to their local Animator.

For example, you probably sync movement velocity etc. already anyway.