我有一个关于我的动画的问题。Sqeuence。只有第一个序列元素正在执行。第二个被忽略。我希望 Sprite spell_1 移动到英雄(hero_x_exact,hero_y_exact),然后移动到目的地。每个元素都可以正常工作,但不能在序列中工作。
goog.require('lime.animation.Sequence');
...
var spellmovement = new lime.animation.Sequence(
spell_1.runAction(new lime.animation.MoveTo(hero_x_exact,hero_y_exact).setDuration(1).enableOptimizations()),
spell_1.runAction(new lime.animation.MoveTo(target_coord_x_spell,target_coord_y_spell).setDuration(1).enableOptimizations())
);