Is there any destructuring support in After Effects Expressions
I often do things with one value in an array property or want to separate them. Is there any way to use destructuring like in JavaScript to clean up my expressions so we don't have to declare multiple variables to separate them
For instance instead of
const elipseScaleX = content("Ellipse Path 1").size[0];
const elipseScaleY = content("Ellipse Path 1").size[1];
Javascript destructuring assignment would just be
const [elipseScaleX, elipseScaleY] = content("Ellipse Path 1").size;
That syntax doesn't seem to be supported in expressions though. Am I missing something in the docs or is there any plan to add support for this?
