Skip to content

Instantly share code, notes, and snippets.

View miracle7's full-sized avatar

Roman Maksymyschyn miracle7

View GitHub Profile
@miracle7
miracle7 / animate_hue.jsx
Last active May 17, 2020 01:09
After Effects hue cycle
phaseSpeed = 1;
hsl = rgbToHsl(value);
newHsl = [(hsl[0] + (time * phaseSpeed))%1.0, hsl[1], hsl[2], hsl[3]];
hslToRgb(newHsl);