AFTER EFFECTS MOVES

a list of ideas to tackle

INTRODUCTION TO CREATING A VIDEO ESSAY

COMPARING AND CONTRASTING

SHOWING CHANGE OVER TIME

SHOWING DETAILS AND CONTEXTS

SHOWING PATTERNS AND REPETITIONS


// Below is forked from another working doc, to be ported above

Motion

Stacking Effects

Generators

Camera animation

Text/Title animation

    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 = .05;


    freq = 4.0;


    decay = 2.0;


    value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);


    }else{


    value;


    }
    tSecs = transition / ( 1 / thisComp.frameDuration); 


    linear(time, inPoint, inPoint + tSecs, 0, 100)


     - linear(time, outPoint - tSecs, outPoint, 0, 100)


    }else{


        linear(time, inPoint, marker.key(1).time, 0, 100) 


    - linear(time, marker.key(2).time, outPoint, 0, 100)


    }
    d = delay*thisComp.frameDuration*(index - 1);


    thisComp.layer(1).position.valueAtTime(time - d)

    *   //Apply to Opacity

    opacityFactor = .75;


    Math.pow(opacityFactor,index - 1)*100
    decay = 1.0; //how fast it slows down


    t = time - inPoint;


    x = scale[0] + maxDev*Math.sin(spd*t)/Math.exp(decay*t);


    y = scale[0]*scale[1]/x;


    [x,y]
    r = rotation + (time - inPoint) *veloc;


    [r]
    if(n<0) 0 else 100;