-
Linking 2 camera’s in different comps at a specific time
Hi guy’s
I’ve got two comp’s
The comp “Background” has been pre-composed in the “MainComp” and contains a Camera.
The “MainComp” needs to have the same camera movements. For easy updating I use the expression:
comp("BackGround").layer("Camera").transform.position;Because the “BackGround” layer also needs to be time-remapped, we need to use the camera value at a specific time
valueAtTime(thisComp.layer("BackGround").timeRemap);However the code:
comp("BackGround").layer("Camera").transform.position;
valueAtTime(thisComp.layer("BackGround").timeRemap);…will not work because the value form the “Camera” never got stored in the value key-frame.
So how do i glue these expressions together?thank you for your time, Mark