Animate a line draw using ABPath

Hi Admin, I would like to create a animated line draw using ABPath just like this

Please help me.
Thank you and more power.

Hi

The approach used in that tutorial should work fine.
You can access all the points in a path using the vectorPath field.

void OnPathComplete (Path p) {
     // Make sure the path succeeded
     if (p.error) return;

     var allPointsInThePath = p.vectorPath;
     // Draw a line here
 }