Skip navigation
Currently Being Moderated

Smooth my wiggle!

Feb 3, 2009 4:15 PM

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
 
Replies
  • Currently Being Moderated
    Feb 3, 2009 5:28 PM   in reply to Navarro Parker
    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.
     
    |
    Mark as:
  • Currently Being Moderated
    May 22, 2009 12:36 AM   in reply to Navarro Parker

    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.

     
    |
    Mark as:
  • Currently Being Moderated
    Nov 28, 2009 7:45 AM   in reply to Navarro Parker

    You can also try:

     

    seedRandom(time*5);

    wiggle(0,100);

     
    |
    Mark as:
  • Currently Being Moderated
    Nov 29, 2009 2:22 AM   in reply to Navarro Parker

    hi

     

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

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)