Created
December 22, 2018 07:04
-
-
Save animoplex/8ab3afc99d4f0a662a6b049103567d48 to your computer and use it in GitHub Desktop.
Universal Expression Syntax - 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
// Universal Expression Syntax - Created by Animoplex: www.animoplex.com | |
// The different types of expression syntax in After Effects and how to make them compatible in any language. | |
// Full Tutorial: https://www.youtube.com/watch?v=b1MxtywoqHg&t=192s | |
// Default Compact Expression: | |
effect("Fill")("Color") | |
// Basic Universal Expression (Property Index): | |
// Replace the effect property’s name with the property’s index. | |
// Give the effect object a custom name to avoid any localization errors. | |
effect("Custom Fill Name")(3) | |
// True Universal Expression (Matchname): | |
// Check out Gimme Prop Path: http://www.redefinery.com/ae/view.php?item=rd_GimmePropPath | |
effect("ADBE Fill")("ADBE Fill-0002") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment