• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Wiggle 3D layer on X and Y only

Community Beginner ,
Oct 07, 2022 Oct 07, 2022

Copy link to clipboard

Copied

Hello,

As the title says I am trying to make a 3D layer to wiggle only in the X and Y axes however all of the articles and forums that I went through are only covering wiggle on one axis.

Thank you for your help

 

TOPICS
Expressions , FAQ , Scripting

Views

1.7K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Oct 07, 2022 Oct 07, 2022

It works no different for two axes. You simply isolate the components:

 

myWiggle=wiggle(5,10);

 

X=myWiggle[0];

Y=myWiggle[1];

Z=value[2];

 

[X,Y,Z]

 

Mylenium

Votes

Translate

Translate
LEGEND ,
Oct 07, 2022 Oct 07, 2022

Copy link to clipboard

Copied

It works no different for two axes. You simply isolate the components:

 

myWiggle=wiggle(5,10);

 

X=myWiggle[0];

Y=myWiggle[1];

Z=value[2];

 

[X,Y,Z]

 

Mylenium

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Oct 07, 2022 Oct 07, 2022

Copy link to clipboard

Copied

Thank you very much. Spent a couple of hours researching this. Should've gone straight here

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 07, 2022 Oct 07, 2022

Copy link to clipboard

Copied

If you own iExpressions, it contains a ton of different wiggle expressions, and one of them is the "Separate Wiggle" which allows you to set the amplitude and frquency for X,Y and Z independently. Just set the Z-amplitude of it to 0 to only wiggle in X and Y.

Screenshot 2022-10-07 at 21.47.23.png

Mathias Möhl - Developer of tools like BeatEdit and Automation Blocks for Premiere Pro and After Effects

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Oct 10, 2022 Oct 10, 2022

Copy link to clipboard

Copied

LATEST

Good to see you already got the right answer. There's also my pt_AutoExpress script, which is 'name your own price' so you can always download it for free. That gives a simple way to apply wiggle, smooth and loop expressions and can help you learn how to write them yourself. Loop is another particularly useful function that is probably massively underused simply because it requires some knowledge in how to write the expression.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines