We are using AnimationState to mix animations
Assuming we have something like this
state1.addAnimation(0, "run", false,0.5f);
state1.addAnimation(0, "jump", false,0.5f);
state1.addAnimation(0, "run", false,0.5f);
state1.addAnimation(0, "jump", false,0.5f);
state1.addAnimation(0, "run", false,0.5f);
state1.addAnimation(0, "jump", false,0.5f);
using
TrackEntry.getAnimation()
We can get the current played animation, which is usually one !
I need to see 2 animations with their current alpha mixing
i.e.
run : 50% & jump : 50%
run : 40% & jump : 60%
run : 30% & jump : 70%
etc.
How can we get all the animations and their contribution alpha ?
Thanks