0% found this document useful (0 votes)
15 views1 page

Smooth Color Transition Script

Uploaded by

EGOFX
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Smooth Color Transition Script

Uploaded by

EGOFX
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

freq = 1;

decay = 5;
duration = 0.10;
retard = textIndex*[Link]*2;
t = time - (inPoint + retard);
startVal = [100,100,100];endVal = [0,0,0];
if (t < duration){
linear(t,0,duration,startVal,endVal);
}else{
amp = (endVal - startVal)/duration;
w = freq*[Link]*2;
endVal + amp*([Link]((t-duration)*w)/[Link](decay*(t-duration))/w);}

You might also like