17 2 / 2012
Layer opacity on/off controlled by layer marker
n=0;
if (marker.numKeys > 0) {
n = marker.nearestKey(time).index;
if (marker.key(n).time > time){n—;}
}
on = .5; //Sets the amount of time the layer is at 100% opacity.
if (n > 0){
t = time- marker.key(n).time;
if( t < on){
100;
}else{0;}
}
05 1 / 2012
Simpler X Animation based on In & Out Point of Layer
xStart = -50000;
xEnd = 50000;
x = value[0] + easeOut(time, inPoint, outPoint, xStart, xEnd);
y = value[1];
z = value[2];
[x, y, z];
19 12 / 2011
Z position animator controlled by layer inPoint
seedRandom(index,true);
zRandom = random(0,thisComp.layer(“CTRL”).effect(“zRandom”)(“Slider”));
zStart = thisComp.layer(“CTRL”).effect(“zStart”)(“Slider”) + zRandom;
zEnd = thisComp.layer(“CTRL”).effect(“zEnd”)(“Slider”);
transitionTimeOffset = random(0,thisComp.layer(“CTRL”).effect(“transitionTimeOffset”)(“Slider”));
t = thisComp.layer(“CTRL”).effect(“transtionTime”)(“Slider”) + transitionTimeOffset;
z = easeOut(time, inPoint, inPoint+t, zStart, zEnd);
[value[0], value[1], z];
17 10 / 2010
Particular work in progress number 2. Another quickie render. Just messing around with particular and sound keys while listening to music. Mostly expression driven. Special thanks to Dan Ebberts the expression wizard. I’ve been silently following him for years at least 8 years.