-
combining 2 things
hello everybody,
I want to apply to the z-position of a Layer
1. same values as the layer above, but a little less >
2. same values as the layer above, but a little later1.
x=position[0];
y=position[1];
z=thisComp.layer(index-1).transform.position[2]/.9;
[x,y,z]2.
x=position[0];
y=position[1];
z=thisComp.layer(index-1).transform.position.valueAtTime(time-1);these expression do either one of the desired things, but I can’t figure out, how to combine them…
how would you do?
also I wonder, why in the second one the ending [x,y,z] is not accepted but requiered in the first.
thanks