• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Tracks And Positioning

New Here ,
Nov 01, 2020 Nov 01, 2020

Copy link to clipboard

Copied

I am messing around with the "CC Smear" Effect. And I made a path for the "From" Point and I want the "To" point's path to be the same but I still want to be able to move the point using keyframes while still having it be tracked to the track I made.

TOPICS
How to

Views

136

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Nov 01, 2020 Nov 01, 2020

Apply the track to a Null, reference the Null with a pickwhip expression in the effects controls, animate the point control on top of the existing keyframes using something as simple as

 

refNull=thisComp.layer("XYZ").transform.position;

X=value[0]+refNull[0];
Y=value[1]+refNull[1];

[X,Y]

 

Mylenium

 

 

Votes

Translate

Translate
LEGEND ,
Nov 01, 2020 Nov 01, 2020

Copy link to clipboard

Copied

LATEST

Apply the track to a Null, reference the Null with a pickwhip expression in the effects controls, animate the point control on top of the existing keyframes using something as simple as

 

refNull=thisComp.layer("XYZ").transform.position;

X=value[0]+refNull[0];
Y=value[1]+refNull[1];

[X,Y]

 

Mylenium

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines