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

Connecting scale, and maintaining keyframes values

Explorer ,
Mar 18, 2023 Mar 18, 2023

Copy link to clipboard

Copied

I would like to connect the scale property of "Layer 1" to the second layer with this expression: thisComp.layer("Layer 2").transform.scale. Is there a way to maintain the value of the scale keyframes relative to the new scale of the "Layer 2".

TOPICS
Expressions

Views

128

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

Community Expert , Mar 18, 2023 Mar 18, 2023

There's more than one way to interpret what you're asking for, but maybe like this:

s = thisComp.layer("Layer 2").transform.scale/100;
[value[0]*s[0],value[1]*s[1]]

Votes

Translate

Translate
Community Expert ,
Mar 18, 2023 Mar 18, 2023

Copy link to clipboard

Copied

LATEST

There's more than one way to interpret what you're asking for, but maybe like this:

s = thisComp.layer("Layer 2").transform.scale/100;
[value[0]*s[0],value[1]*s[1]]

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