creating "rigged camera" via scripts

What type of scripts do you need?

Moderator: byronnash

Post Reply
4eyes
Posts: 3
Joined: November 17th, 2005, 11:50 am

Hi there,

Trying to write a script which creates a new Camera, a null with slider and angle expression controls, and then expressions on the camera's position and rotation properties which are referencing the slider controls on the null.

I've gotten this to work manually following other posts elsewhere on this forum - and here's what i do:

First I create a null object and call it "MOVER". to that i add 3 slider controls, called Pos X, Pos Y, and Pos Z. then i create 3 angle controls called Rot X, Rot Y, and Rot Z.

After that I create a camera and put this expression on its position:

w = thisComp.width/2;
h = thisComp.height/2;
d= (-900);
x = thisComp.layer("MOVER").effect("Pos X")("Slider")+w;
y = thisComp.layer("MOVER").effect("Pos Y")("Slider")+h;
z = thisComp.layer("MOVER").effect("Pos Z")("Slider")+d;
[x, y, z];

and on the orientation goes:

x = thisComp.layer("MOVER").effect("Rot X")("Angle");
y = thisComp.layer("MOVER").effect("Rot Y")("Angle");
z = thisComp.layer("MOVER").effect("Rot Z")("Angle");
[x, y, z];

Anyone know how I could script this?
Thanks!
bradshaw1965
Posts: 98
Joined: March 14th, 2006, 2:16 pm
Location: Atlanta, GA
Contact:

I'm not sure if Kyle is still checking for this script, but I went ahead and gave this one a shot. I posted the results here...
http://www.creative-workflow-hacks.com/ ... r-effects/

Hope it's still useful.
Dale Bradshaw
Technology Director | Primal Screen
creative-workflow-hacks.com
Atlanta, GA
Post Reply