My animator doesn't work: I set a bool variable from code:
animatedObject.myAnimator.SetBool("MyVariable", true);
animatedObject.SetActive(true);
But the animation isn't triggered. I'm sure that the animator's transition is correctly set to react with "MyVariable".
Looking at the output console, I see that I have a warning:
animator is not playing an animation controller
What does that mean?
