No full body awareness errors

MissBig

Member
Hi, when I do just a straight First Person Character with no body awareness so I check off the animator I get errors about the animator. I never use to but I decided to do a new project and updated UCC for that one and now the errors are there. There is nothing else in the project except for UCC. error.PNG
 
Thank you for letting me know. You can fix this by moving line 137 within AnimatorMonitor to line 143:

Code:
            if (m_Animator != null) {
                m_Animator.speed = m_AnimatorSpeed; // here
                EventHandler.RegisterEvent(m_GameObject, "OnCharacterSnapAnimator", SnapAnimator);
 
Top