Creating transitions scenes in cocos creator?

Cocos creator does implements transitions scenes ?

so the basic cocos2d-x way was like this.

auto fade = TransitionFade::create(1.0f,MainMenuScene::createMainMenuScene());
Director::getInstance()->replaceScene(fade);

But as far I know there’s no way to use this in coco creator right ?
I just want to know of we can do that in cocos creator.
The only way to do was creating a similar fade in out usin a layer that increases the opacity and after some time decrease the opacity that looks good for fade transitions but what about the other effects ?

    this.canvas.opacity = 0;
    this.canvas.color = new cc.Color(0, 0, 0);
    this.canvas.runAction(cc.fadeIn(1.0));

Same for fadeout

2 Likes