Path Follower - Moving sprite along paths

Hello,

I implemented a path follower that managed to move sprite along premade points ([{x,y},{x,y},{x,y},…]).

Now I am wondering if there is “premade” or built-in way that I can create path (or bezier path) and make the sprite or whatever to move along that path.

I am prety sure that the creator engine has something like this (this is basic funcionality in game engines).

I tried to use the timeline to make “animation clips” but the sprite moves in a linier way and not in a bezier way.

I am using Cocos Creator v2.0.5 (type script)

cc.bezierTo

http://docs.cocos2d-x.org/creator/manual/en/scripting/action-list.html

Took me some time to understand how to use it. But it is working well.
Thank you…