Forum Replies Created

Page 1077 of 1081
  • I think this might be a simpler version of what you’re looking for:

    seedRandom(index,true);
    value + random([-150,-150],[150,150]);

    Dan

  • The Period key on the numberic keypad starts audio preview. You can hit asterisk on the keypad to leave layer markers while the audio is previewing.

    Dan

  • Dan Ebberts

    May 4, 2005 at 12:03 am in reply to: How to slow down Random value

    Ah OK – I didn’t pick up that you wanted it to ramp from one value to the next. Try this:

    period = 5; // every 5 seconds

    seed = Math.floor(time/period);
    seedRandom(seed,true);
    xNow = gaussRandom(50,60);
    seedRandom(seed+1,true);
    xNext = gaussRandom(50,60);
    x = linear(time,seed*period,(seed+1)*period,xNow,xNext);
    y = x;
    [x,y]

    Dan

  • Dan Ebberts

    May 4, 2005 at 12:03 am in reply to: How to slow down Random value

    Ah OK – I didn’t pick up that you wanted it to ramp from one value to the next. Try this:

    period = 5; // every 5 seconds

    seed = Math.floor(time/period);
    seedRandom(seed,true);
    xNow = gaussRandom(50,60);
    seedRandom(seed+1,true);
    xNext = gaussRandom(50,60);
    x = linear(time,seed*period,(seed+1)*period,xNow,xNext);
    y = x;
    [x,y]

    Dan

  • Dan Ebberts

    May 3, 2005 at 11:38 pm in reply to: How to slow down Random value

    Hmmm… what version of AE are you running?

    Try this instead:

    period = 5; // every 5 seconds

    seed = Math.floor(time/period);
    seedRandom(seed,true);
    x = gaussRandom(50,60);
    y = x;
    [x,y]

    Dan

  • Dan Ebberts

    May 3, 2005 at 11:38 pm in reply to: How to slow down Random value

    Hmmm… what version of AE are you running?

    Try this instead:

    period = 5; // every 5 seconds

    seed = Math.floor(time/period);
    seedRandom(seed,true);
    x = gaussRandom(50,60);
    y = x;
    [x,y]

    Dan

  • Dan Ebberts

    May 3, 2005 at 10:16 pm in reply to: How to slow down Random value

    Try this:

    rate = 1/5; // once every 5 seconds
    posterizeTime(rate);
    x = gaussRandom(50,60);
    y = x;
    [x,y]

    Dan

  • Dan Ebberts

    May 3, 2005 at 10:16 pm in reply to: How to slow down Random value

    Try this:

    rate = 1/5; // once every 5 seconds
    posterizeTime(rate);
    x = gaussRandom(50,60);
    y = x;
    [x,y]

    Dan

  • Couldn’t you just use the text layer to create a new preset?

    re: Shatter – keep the Force 1 Radius keyframed to zero until the frame where you want the shatter to begin.

    Dan

  • Dan Ebberts

    April 28, 2005 at 7:09 pm in reply to: gravity and stock pilling expression

    This would be tough to do in After Effects. Expressions don’t have access to mask info.

    Dan

Page 1077 of 1081

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