Skip to main content
Inspiring
February 4, 2009
Question

Smooth my wiggle!

  • February 4, 2009
  • 6 replies
  • 41371 views
Hey all!

I am wiggling a Null position as an emitter for Particular. However, the resulting wiggle is pretty jaggy.

I found Dan's smoothing function:
temp = thisComp.layer("Null 11").transform.position.smooth(1);
[temp[0], temp[1]]

But it only make my streaks smaller, not smoother. They are just as angular as before.

Photobucket
This topic has been closed for replies.

6 replies

Participant
April 8, 2023

3 wiggle expression tips  — after effects expression tutorial

https://youtu.be/cpZmb8FH5Zo

Participant
May 17, 2021

Assiste essa aulta no tempo que deixei o link  https://youtu.be/XR0wlcNK19Q?t=407

November 29, 2009

hi

if you have V2 of particular just turn on Position Subframe>10xSmooth that's all ;-)

Participant
November 28, 2009

You can also try:

seedRandom(time*5);

wiggle(0,100);

Inspiring
May 22, 2009

You could also try increasing the frame rate of the particular comp to 99 fps, then drop this into another comp with your desired frame rate.

Inspiring
May 25, 2009

Good suggestion!  I'll try it!

Inspiring
February 4, 2009
The problem isn't with wiggle() per se, it's that the wiggle is getting sampled too infrequently to give you a result that is representative of the motion of the emitter. The emitter's position is being evaluated on every frame, but the emitter is moving so much between the frames that a lot of information about the motion path simply never gets sampled.

The only way to get that information onscreen is to reduce the frequence of the wiggle. This will necessarily make your particle animation run slower (you'll also need to increase the lifespan of your particles in inverse proportion to compensate). Then you'll have to nest your particle layer and the emitter null (plus any other layers on which Particular depends) and use time remapping to speed up the animation proportionally.

Also, you might already know this, but Particular allows you to use a light as an emitter control without having to muck around with expressions to tie it to Particular's emitter properties.