hello,
i have a spread of transforms. an object gets drawn with each transform. i would like the objects to move, so that object1 moves towards object2’s original location, etc. in other words, if the transforms indicate n objects in a line like this:
{CODE(ln=>1)}o o o … o
1 2 3 n^
then i would like to make an animation like this:
{CODE(ln=>1)}
o o o … o
o o o … o
o o o … o^
so they all move from their own position i, into position i+1 (i guess the n:th one should continue in the direction indicated by points n and n-1, or maybe i’ll have one extra transform where an object does not get rendered).
how should i patch this?