Animate squiggle shape


I want animate three squiggle shape in one animate code,is it posible?

animate({
        target: [line0, line1, line2 ],
        props: { shape: [lineA,lineB,lineC] },
        time: 2,
        rewind:true,
        loop: true,
        ease: "linear"
    });

The object you would be animating is the point - not the Squiggle. You could animate a point on each of the three squiggles in a series with negative waits all in one animate(). Make sure to update() the squiggles.


my means is how to reduce the code lines,when animate shapes at same time