618551
618
Zoom out
Zoom in
Previous page
1/658
Next page
Nach oben
Nach oben
Nach oben
Expression-Beispiel: Skalierung an jeder Ebenenmarke animieren
Wenden Sie folgende Expression auf die Eigenschaft „Skalierung“ an, damit eine Ebene bei jeder Marke wackelt:
n = 0;
t = 0;
if (marker.numKeys > 0){
n = marker.nearestKey(time).index;
if (marker.key(n).time > time) n--;
}
if (n > 0) t = time - marker.key(n).time;
amp = 15;
freq = 5;
decay = 3.0;
angle = freq * 2 * Math.PI * t;
scaleFact = (100 + amp * Math.sin(angle) / Math.exp(decay * t)) / 100;
[value[0] * scaleFact, value[1] / scaleFact];
Expression-Beispiel: Verwackeln zu einer bestimmten Zeit beginnen oder beenden
Sie können anstelle der hier verwendeten Expression wiggle jede andere Expression verwenden, um den Einfluss einer Expression zu einer
bestimmten Zeit zu beginnen oder zu beenden.
Wenden Sie folgende Expression auf eine Eigenschaft an, um sie zu verwackeln. Das Wackeln soll beim Zeitpunkt 2 Sekunden beginnen:
timeToStart = 2;
if (time > timeToStart)
{
wiggle(3,25);
}
else
{
value;
}
Wenden Sie folgende Expression auf eine Eigenschaft an, um das Wackeln zu beenden. Es soll beim Zeitpunkt 4 Sekunden enden:
timeToStop = 4;
if (time > timeToStop)
{
value;
}
else
{
wiggle(3,25);
}
Wenden Sie folgende Expression auf eine Eigenschaft an, um sie beim Zeitpunkt 2 Sekunden zu verwackeln und das Wackeln beim Zeitpunkt
4 Sekunden zu beenden:
timeToStart = 2;
timeToStop = 4;
if ((time > timeToStart) && (time < timeToStop))
{
wiggle(3,25);
}
else
{
value;
}
Expression-Beispiel: Fokalebene der Kamera an eine andere Ebene anpassen
617
618


Need help? Post your question in this forum.

Forumrules


Report abuse

Libble takes abuse of its services very seriously. We're committed to dealing with such abuse according to the laws in your country of residence. When you submit a report, we'll investigate it and take the appropriate action. We'll get back to you only if we require additional details or have more information to share.

Product:

For example, Anti-Semitic content, racist content, or material that could result in a violent physical act.

For example, a credit card number, a personal identification number, or an unlisted home address. Note that email addresses and full names are not considered private information.

Forumrules

To achieve meaningful questions, we apply the following rules:

Register

Register getting emails for Adobe After Effects CC 2014 at:


You will receive an email to register for one or both of the options.


Get your user manual by e-mail

Enter your email address to receive the manual of Adobe After Effects CC 2014 in the language / languages: German as an attachment in your email.

The manual is 7,59 mb in size.

 

You will receive the manual in your email within minutes. If you have not received an email, then probably have entered the wrong email address or your mailbox is too full. In addition, it may be that your ISP may have a maximum size for emails to receive.

Others manual(s) of Adobe After Effects CC 2014

Adobe After Effects CC 2014 User Manual - English - 737 pages


The manual is sent by email. Check your email

If you have not received an email with the manual within fifteen minutes, it may be that you have a entered a wrong email address or that your ISP has set a maximum size to receive email that is smaller than the size of the manual.

The email address you have provided is not correct.

Please check the email address and correct it.

Your question is posted on this page

Would you like to receive an email when new answers and questions are posted? Please enter your email address.



Info