Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions How to make wiggle layer only in x axis ?

  • How to make wiggle layer only in x axis ?

    Posted by Topevil on August 28, 2005 at 9:06 pm

    I would like to make use expression coled wiggle to make my object move randomly acros the screen, but I would like that this object moves only in x axis but define different parametrs on y axis. Could somebody explain me how to do it !!!??? example would be very good !

    Topevil replied 20 years, 8 months ago 3 Members · 3 Replies
  • 3 Replies
  • Andrew Kramer

    August 28, 2005 at 10:06 pm

    In the wiggler option choose 1 dimention and select x.
    Andrew

  • Dan Ebberts

    August 28, 2005 at 11:40 pm

    If you want to wiggle just x and leave y alone you could do it this way:

    freq = 7;
    amp = 50;
    w = wiggle(freq,amp);
    [w[0],value[1]]

    If you want to wiggle both x and y but with different parameters, you could do it like this:

    xFreq = 7;
    xAmp = 50;
    yFreq = 3;
    yAmp = 100;
    wX = wiggle(xFreq,xAmp);
    wY = wiggle(yFreq,yAmp);
    [wX[0],wY[1]]

    Dan

  • Topevil

    August 29, 2005 at 6:13 pm

    This is fastest and the best help I had ever got !!! 🙂

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy