Hi All, I'm tweening an object using bezier values. I'd like to send the current quadratic data out via onUpdateParams but can't seem to figure out an easy way to do it. I guess I'm looking for something like this:
var points = [{x:100, y:50}, {x:150, y:100}, {x:200, y:50}, {x:350, y:350}];
tl.to(
point,
3,
{bezier:{values:points, type:"thru", curviness:2},
ease:Expo.easeOut,
onUpdate: myFunction,
onUpdateParams:["current x:a,b,c,d and current y:a,b,c,d"]});
Obviously not correct, but ho