-
Add values to an empty array
Hey ya’ll !
I am trying to create a shape layer path based on a target layer’s position.
this expression:
createPath(points = myPoints, inTangents = [], outTangents = [], isClosed = false);
lets me create a path based on an input array (“myPoints”).I want this array to be dynamic for a lack of a better term ( I am no programmer), i.e. I want to add values to this array and I thought I could use something like this:
tCount = 0; // time counter
tInter = 0.5; // time interval (samples)
myPoints = []; //an empty array to store the path pointswhile(tCount
The first line in the while loop returns an error ("Undefined value used in expression"). I thought I could add values to an empty array but I guess I'm doing something wrong. Can somebody help me out with this? How DO you add values to an array? Or should I be generating a string inside the "myPoints" array that contains all the points based on a similar while loop?
Any help is greatly appreciated!
Thanks