For example, when running 2 sequential actions, I can call:
this.node.runAction(cc.Sequence(cc.rotateBy(..),cc.MoveTo(...)));
But now, I want Animation can play animations sequentially (play animation then follow by another animation), currently I think I would do it like this, for example, play defaultAnimation → turnLeftAnimation / turnRightAnimation (depend on some condition):
```
myAnimation.play("defaultAnimation");
this.scheduleOnce(function(){
if(condition){
myAnimation.play("turnLeftAnimation");
}else{
myAnimation.play("turnRightAnimation");
}
},myAnimation._clips[0].duration);
```
which encloses the next animation by scheduleOnce. Is there any simpler syntax or any generic way that let me play 2 animations sequentially? For example:play(["defaultAnimation",condition?"turnLeftAnimation":"turnRightAnimation"])