Discussion:
Constraining Camera wiggle to in two dimensions only
(too old to reply)
N***@adobeforums.com
2008-07-14 16:32:05 UTC
Permalink
How can I constrain a 3D layer's position wiggle to 2D dimensions only? Let's say X,Y or X,Z or Y,Z?

For XY only, I was thinking [wiggle(n1,n2)[0],wiggle(n3,n4)[1],value[2]] But that seems a little clunky.
R***@adobeforums.com
2008-07-14 17:08:33 UTC
Permalink
Noting clunky about that.

another way to write it would be:

w = wiggle(5, 1);
[w[0], w[1], value[2]]

or

wx = wiggle(5, 1);
wy = wiggle(3, 1);
[wx[0], wy[1], value[2]]
N***@adobeforums.com
2008-07-14 17:55:37 UTC
Permalink
Yeah, I like the use of variables. Makes it easier to look at (especially when pickwhipping to sliders). Thanks!
Loading...