Hi,
I have a two animations running via an animator. I have two states, onRun and onIdle. However, I am getting very glitchy results. It seems the animator if switching between animations at a super fast pace.
My transitions are marked, from idle to run with a boolean onRun = true, and from run to idle onIdle = true.
The issue seems to be that often, the two animations are running at once. For instance, at start, onIdle is set to true, onRun is set to false, this is true in the editor. As such I would expect only idle to play, but both play, flipping back and forth at a very high pace.
???