i am wondering if it is possible to use the BezierPlugin to create a curve that not only goes through a series of points, but will hit each of them at a defined amount of the way through the tween? using an array something like this:   var tracker1Positions=     [         {x:13.3,    y:19.5,    progress:0},         {x:14.8,    y:19.0,    progress:0.1},         {x:16.8,    y:18.3,    progress:0.7},         {x:19.0,    y:17.9,    progress:0.75},         {x:21.0,    y:13.3,    progress:1},     ];