Checkbox Expression Link - After Effects Expression by Animoplex
This file contains 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