Skip to content

Instantly share code, notes, and snippets.

@animoplex
Last active April 1, 2023 23:24
Show Gist options
  • Save animoplex/8812f9f5d8945ac0321a7848bf1a9399 to your computer and use it in GitHub Desktop.
Save animoplex/8812f9f5d8945ac0321a7848bf1a9399 to your computer and use it in GitHub Desktop.
Delayed Offset - After Effects Expression by Animoplex
// 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))
@Caqtus
Copy link

Caqtus commented Jul 25, 2022

Thanks, saved a lot of time

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment