fredag den 27. maj 2011

AE- WIGGLE - Both X and Y dimensions of same value, and separat.

//ngambles- on VideoCoPilot

wig = wiggle(.2,300);
[wig[0],wig[0]]

Seperat:

wig1 = wiggle(.2,4);
wig2 = wiggle(6,2);
[wig1[0],wig2[1]]

AE - maxScale and miniScale for layer driven by sound

AE - SCALE maxScale and miniScale for layer driven by sound
Convert music to keyframes with "Keyframe assistent"

//ngambles- on VideoCoPilot

maxScale = 100;
minScale = 50;

val = thisComp.layer("Audio Amplitude").effect("Right Channel")("Slider");
val = Math.min(maxScale,val);
val = Math.max(minScale,val);

[val,val]

onsdag den 27. april 2011

C4D - Doodle Paint, sketch out the motion.

//3dSpeedy.com

Use the Doodle Paint tool to quickly draw on top of your viewport. Perfect for adding in notes or thoughts along the way, or to pre-viz your keys and timing before doing any heavy lifting. Found under the Tools - Doodle.

C4D - Undo Camera Move

//3dSpeedy.com
Finaly I found that one.!!

Accidently move the camera? To roll back to your last view you can use Cmnd + Shift + Z (mac) Ctrl + Shift + Z (windows)

C4D - Timeline frame.

//3dSpeedy.com

Timeline frame.

To move frame by frame on your timeline, Pressing the ‘f’ key will move 1 frame back, pressing the ‘g’ key will move 1 frame forward. Hold down the CTRL(CMD) key while pressing ‘f’ and ‘g’ to jump between keyframes (back or forward). Its a big time saver!

mandag den 21. marts 2011

C4D - Random multi type in

//Dr.Sassi
//maxon.de

Clean Syntax:

rnd(...) -Random

num - Number

tot - Total


Exampels:

x*num*25

x+num*10

(num+1)/tot*360


x+rnd(250)

onsdag den 9. marts 2011

AE - De-sync Expressions - snake duplicates

//Sebastian Bap
//On Greyscalegorilla

To make duplicate movements with delay on duplicate layers.


Remember Slider !!

position:
dly=thisComp.layer("Arrows 1").effect("Slider DELAY")("Slider")
thisComp.layer(index +1).transform.position.valueAtTime(time-dly)


Without slider !!
// Dan Ebberts




Position:
delayFrames = 3;
delay = framesToTime(delayFrames);
thisComp.layer("leader").transform.position.valueAtTime(time-delay)

AE POSTWORK blog is virtually just a notepad, where I put all the AE expressions up I finde and use, its so I can easily get to them wherever I am and no matter what computer I sit at. I do not write my own expressions, so all expressions on the page is downloaded from the web,or modify versions i found. and tutorials etc.. I will try to credit those who have made expressions if I can.

Now, with tips and tricks for AE & C4D.
No more forgetting the little tricks and tips I found on my road with After Effects, etc.

Sebabba