2008.02.27, 02:59 PM
When you start then change an animation, the animation plays like one tick of the first animation before the second. So startThenChange('fallOver','dead'); results in the character falling over, suddenly coming back up, then falling over again. But this can be avoided if you use
instead of
Code:
obj.model.animation.start('foo');
obj.model.animation.change('foo2');Code:
obj.model.animation.startThenChange('foo','foo2');