How can I return a list of just layer transform properties?
Is there a process or built in function to get all of the gui settable properties for a layer object.
Here is an example
I have 2d solid layer and I want to get a list of just the transform properties that can be accessed in the AE gui.
anchorpoint
position
rotation
scale
etc...
If I just try to iterate over the object like the below I get a ton of properties that I don't need and not the ones I want.
for (p in layer){
$.writeln(p);
// or
$.writeln(p.transform);
}
