Expression Shorts - Wiggle Only One Direction 1
Support ProVideo Coalition
Shop with Filmtools Logo

What Do You Think? Let Us Know.

Subscribe
Notify of
guest
2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Matt Chapman

This was a good building block, but I cannot get it to wiggle only on the Y axis in a 3D comp. I’ve tried:

(to copy and start, wiggling X)

x = transform.position[0];

y = transform.position[1];

z = transform.position[2];

w = wiggle(50,100);

[w[0],y,z];

(swapping the “y” and the “x”)

y = transform.position[0];

x = transform.position[1];

z = transform.position[2];

w = wiggle(50,100);

[w[0],x,z];

(Changing the final line)

x = transform.position[0];

y = transform.position[1];

z = transform.position[2];

w = wiggle(50,100);

[w[x,[0],z]];

But all produce errors in the code. Can you help me understand what I am missing?

Thanks!

dusk

To wiggle in y and / or z axis , the last line would be
1) for y
[x, w[1], z]
2) for z
[x, y, w[2]]

The numbers within the braces represents the 3 axes – 0 is x , 1 is y and 2 is z

You Might Also Like