Last active
June 29, 2020 17:11
-
-
Save animoplex/5fff54407293ca9e97f2093b9935b93f to your computer and use it in GitHub Desktop.
Checkbox Expression Link - 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
// Checkbox Expression Link - Created by Animoplex: www.animoplex.com | |
// Link an effect or property to a checkbox control with an expression in After Effects. | |
// Full Tutorial: https://www.youtube.com/watch?v=ggwCkj3sWZM | |
src = effect("Checkbox Control")("Checkbox"); | |
if (src == true) { | |
// YOUR EXPRESSION HERE | |
} | |
else { | |
value; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment