Last active
April 1, 2023 23:24
-
-
Save animoplex/8812f9f5d8945ac0321a7848bf1a9399 to your computer and use it in GitHub Desktop.
Delayed Offset - After Effects Expression by Animoplex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Delayed Offset - Created by Animoplex: www.animoplex.com | |
// Delays an animation based on the layer above and the frames to delay. | |
// NOTE: Looks for an identical transform property on the layer above. | |
// NOTE: To change, replace "transform(thisProperty.name)" with your desired effect. | |
delay = 10; // Frames To Delay | |
above = thisComp.layer(index - 1).transform(thisProperty.name); | |
above.valueAtTime(time - framesToTime(delay)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, saved a lot of time