Skip to content

Instantly share code, notes, and snippets.

@animoplex
Created September 4, 2018 01:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save animoplex/c071d3e2c21fa77d452d03e415c2c240 to your computer and use it in GitHub Desktop.
Save animoplex/c071d3e2c21fa77d452d03e415c2c240 to your computer and use it in GitHub Desktop.
Linear & Ease Expression - After Effects Expression by Animoplex
// Linear & Ease Expression - Created by Animoplex: www.animoplex.com
// Basic linear and ease expressions for use on a property in After Effects.
// Full Tutorial: https://www.youtube.com/watch?v=TFXgX0IiamQ
// Linear Example
linear(time - inPoint, 0, 100)
// Ease Example
ease(time - 5, 100, 0)
// Long-Form Linear Example
linear(time, outpoint - 2, outPoint, 100, 0)
// Long-Form Ease Example
ease(transform.opacity, 0, 100, 25, 75)
// Ease In Example
easeIn(time, 0, 100)
// Ease Out Example
easeOut(opacity, 100, 0, 0, 50)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment