Tag Archive for: after effects expressions reference

Timecode in Text Layer Expression

//DISPLAY CURRENT TIMECODE IN TEXT LAYER: timeToCurrentFormat();

Wiggle Expressions

//WIGGLE X ONLY: [wiggle(5,30)[0],value[1]] ———————————————————————————— //WIGGLE Y ONLY: [value[0],wiggle(1,100)[1]] ———————————————————————————— //WIGGLE X AN Y SEPARATELY: [wiggle(5,30)[0],wiggle(1,100)[1]] ———————————————————————————— //WIGGLE WITH HOLD KEYFRAMES: f = 2; a = 10; posterizeTime(f); wiggle(f, a);

After Effects Loop Expressions Explained

In After Effects, loop expressions are used to create repetitive and cyclical animations. They allow you to seamlessly repeat or cycle through keyframes, creating continuous motion without the need for manual duplication. Here are explanations for some common loop expressions in After Effects: Example usage: // LoopOut example loopOut(); // PingPong Loop example loopOut(“pingpong”); // […]

Inertial Bounce Expression

// TY’S INERTIAL BOUNCE: n = 0; if (numKeys > 0){ n = nearestKey(time).index; if (key(n).time > time){ n–; } } if (n == 0){ t = 0; }else{ t = time – key(n).time; } if (n > 0){ v = velocityAtTime(key(n).time – thisComp.frameDuration/10); amp = .03; freq = 2.0; decay = 2.0; value + […]