Does Animation have any simpler methods that let us play an animation follow by another animation?

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"])

You could attach a callback to FINISHED animation event,
details in this link

but when the second animation ends, seems it would play the second animation again because the callback still exists, how to “cancel” the callback?

you could use once function to register callback for only 1 time, instead of “on”