-
Problem with long createPath in AE 15
Hi guys,
I’m usually working on AE 16, but my current project should be usable for people running 15. After some tweaking of the syntax I got all my expressions working, but some of my paths look incomplete. I found out createPath seems to be limited to 1000 points in AE 15 (in 16 it draws at least 9000 without a problem). An easy way to replicate the problem is to create a shape and set this as its path:
path = [];
for (i=0; i<2000; i++) {
path.push([random()*100,random()*200]);
}
createPath(path,[],[],false);And then visualise the poth length in the Source Text of a text layer:
thisComp.layer("Path").content("Shape 1").content("Path 1").path.points(0).lengthAE 15 outputs 1000 as the array length, instead of 2000. Is this a known issue? I could create multiple paths, but this responds to user input, so I never know how long the input will be.