Hey I was wondering if it’s possible to set the speed of only one animation clip at a time.
This example, given in the reference sets the speed for all animations:
for (var state : AnimationState in animation) {
state.speed = 0.5;
}
I tred several different things like: animationName.AnimationState.speed = n, but didn’t succeed.
I couldn’t also find a topic for that in the forums.