Error
  • XML Parsing Error at 1:66. Error 23: EntityRef: expecting ';'
Expression Preset 1 : Trigger Decay at Keyframe #2
smaller text tool iconmedium text tool iconlarger text tool icon

Here is the expression from the "grunge tutorial":

veloc = 18;
amplitude = 60;
decay = 2;
t=time - key(2).time;

if (t<0){value}
else{
x=amplitude*Math.sin(veloc*time)/Math.exp(decay*t);
value + [x,0]
}