Question
Error: ab.normalOnPath() is not a function
Hi
I managed to a path with the following script (just a line between two layers), but trying to add a third point inbetween them with a slight offset AE does not find the normalOnPath function (trying to bend the line as if ther's a knee/elbow on it). Is it not available on a new createPath() variable?
var ab = createPath(
[toWorld(effect("A")("Layer").position),
toWorld(effect("B")("Layer").position)]
)
createPath(
[toWorld(effect("A")("Layer").position),
ab.normalOnPath()*50,
toWorld(effect("B")("Layer").position)]
)
