-
Layer following another with an offset in one axis
Hello! I’m pretty new to expression in AFX. I have this scene made of elements from a still that I took appart in Photoshop, each on Itès own layer. Some elements are the reflection of others, and I’d like to link them but have an offset only in the Y axis. As expression don’t “split” position in x, y and z, how can I modifiy this basic expression thisComp.layer(“BOOKS”).transform.position
to make It work. If I try : thisComp.layer(“BOOKS”).transform.position*(0,-1.5,0) the expression isn’t invalided but works like the original one (same position) When I use : thisComp.layer(“BOOKS”).transform.position*-1.5, It works but the position get offseted in all the axis (x,y and z if 3d layer).Thank you!
thisComp.layer("BOOKS").transform.position*(0,-1.5,0)