Unity-Animation parameters are not being set
- by user1814893
I have the following animation controller:
with two parameters of walkingSpeed and Jump. I have the following code which should change the values:
animator.SetFloat("walkingSpeed",0.9f);
animator.SetBool("Jump",true);
and animator is the correctly referenced animator object. However the values that the parameters are set to do not appear…