1. Ustawiamy Kompozycję
2. Wpisujemy dowolny tekst :
3. Wybieramy w dodanym tekście ustawienia :
Dodajemy - Animate : Position
- Następnie w Animator 1 - add - Property - Position , Scale, Opacity
- W Expression Selector 1 - przytrzymujemy (hold) [Alt] i naciskamy 'zegare' w linii "Amount" w zaznaczonym miejscu wpisujemy poniższy kod.
Expresion Selector 1 - wypełniamy kodem z poniżej.
freq = 1;
decay = 5;
duration = 0.10;
retard = textIndex*thisComp.frameDuration*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*Math.PI*2;
endVal + amp*(Math.sin((t-duration)*w)/Math.exp(decay*(t-duration))/w);}
4. Następnie zmieniamy parametry w ustawieniach :
- POSITION - 0,0,100,0
- SCALE - 100,0,0,0%
- OPACITY - 0%
Komentarze