Hi Dan,
I have a similar issue. I’m trying to create a delay of movement in z space with the following expression:
z = thisComp.layer(“cntrl”).effect(“start layer”)(1);
myOffset = effect(“myOffset”)(1).value * thisComp.frameDuration;
masterDelay = thisComp.layer(“cntrl”).effect(“Delay”)(1).value * thisComp.frameDuration;
sampleP = time – myOffset – masterDelay;
z.position.valueAtTime(sampleP)
how can i prevent the layers that are being delayed from reading the x+y position of the main layer? I tried using your expression above but had no luck.