I have an SVG I'm trying to align to a path using pathDataToBezier().   When I do not include an align parameter the animation plays normally with code below.   ferry_motionPath = MorphSVGPlugin.pathDataToBezier("#shep_path"); $("#test_ferry").click(function(){ tween=TweenLite.to("#shep_ferry",60,{bezier:{values:shep_motionPath, type:"cubic"}, ease: Power1.easeIn}); });   when I change this to align to the object as below:   ferry_motionPath = MorphSVG