-
Transitional colors
I’m setting a way to animate some colors changes, like I have my main colors on my main layer so I can define them and then I set a linear expression so I can make color 1 change to color 2 in a gradient fashion.
Color1 = comp(“main”).layer(“Color_crtl”).effect(“Color Control_06”)(“Color”)
Color2 = comp(“main”).layer(“Color_crtl”).effect(“Color Control_02”)(“Color”)
linear(effect(“Slider Control”)(“Slider”),0,100,Color1,Color2)
But would be possible to be able to change for multiple colors? Like is there a way to setup the slider so the value 01 goes to color 01, value 10 goes to color 05, value 20 goes to color 03…
I saw some stuff from @andrei popa, but in his resolution the colors just swap, I’d like them to be animated.