Last active
May 17, 2020 01:09
-
-
Save miracle7/0fc02b5c8674b904bcb379c55e993fe2 to your computer and use it in GitHub Desktop.
After Effects hue cycle
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
phaseSpeed = 1; | |
hsl = rgbToHsl(value); | |
newHsl = [(hsl[0] + (time * phaseSpeed))%1.0, hsl[1], hsl[2], hsl[3]]; | |
hslToRgb(newHsl); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment