Farrugia

Level New

Joined on 24 October 2015

1 Comments

Farrugia commented on Learn how to use the expressions selector on a text layer

Bonjour je débute sur After Effects. J'ai copié l'expression ci-dessous par rapport au tuto et j'ai un message d'erreur d'expression :
freq = 1;
decay = 5;
duration = .1;
offset = (textindex-1)*thisComp.frameDuration*1;

t = time - (inPoint + offset);
startVal = [100,100,100];
endVal = [0,0,0];

if (t < duration){
linear(t,0,duration,startVal,endVal);
}else{
amp = (endVal - startVal)/duration;
w = freq*Math.PI*2;
endVal + amp*(Math.sin((t-duration)*w)/Math.exp(decay*(t-duration))/w);
}
Y-a-t il une erreur que je ne vois pas ? Merci de votre aide. Sandrine