Hey, I found a word around of this animation speed issue.
Then problem was not with animChannel.setSpeed(speed). It actually increases animation speed as you mentioned earlier. The problem is when you blend in another animation with this.
channel.setAnim("stand", 0.50f);
If i use this line speed goes back to default, i think it is 1.
So, the word around is simple, set the animation speed again after blending another animation.
This has pros and cons. First, now i have better control of the animation speed. I can set the speed whenever and whatever I want. On, the other side, this is making my code messy.
It this ok with this method?