Forums › Adobe After Effects Expressions › Rotate text at each marker without manually adding keyframes
-
Rotate text at each marker without manually adding keyframes
-
TIneke Van Schalkwyk
February 2, 2023 at 11:31 am -
Dan Ebberts
February 2, 2023 at 4:42 pmProbably something similar to this:
m = marker;
n = m.nearestKey(time).index;
if (time < m.key(n).time) n--;
r = 0;
if (n > 0){
n = (n -1)%4;
if (n == 1)
r = -5
else if (n == 3)
r = 5;
}
r
Viewing 1 - 2 of 2 posts
Log in to reply.