onsdag den 27. april 2011

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)

mandag den 7. marts 2011

AE - Dan Ebbert's Expression lab

Dan Ebbert's Expression lab

Bezier Curve

Border Lines

Confetti

Depth of Field

Inverse Kinematics

Jack-in-the-Box

Pendulum

Random Grid Movement

Random Lines

Random Motion

Random Pan and Scan

Random Stills

Spirograph

Squash and Stretch

Stutter Frames

Swinging, Flickering Light

Undulations

Vibrating Strings

torsdag den 18. november 2010

AE - Stopmotion and Jitter Jitter

//by Steve Roberts ad Creativ COW


For Frame rate use:

time>posterize

--------------------------------------------------------------

And for jitter:

t=time+random(.1);
valueAtTime(t)

or more Tweaks


t=time+random(.09,.2);
valueAtTime(t)

tirsdag den 9. november 2010

AE - Opacity -Dealy form Index layer

//(hacked) form a Dan Ebberts expression.

http://www.motionscript.com/mastering-expressions/follow-the-leader.html


delay = 10; //number of frames to delay
op = thisComp.layer(index+1).opacity;
d = delay*thisComp.frameDuration;
op.valueAtTime(time - d)
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