Activity › Forums › Adobe After Effects › quiver, shiver
-
quiver, shiver
Posted by Laurie Pepper on July 1, 2005 at 12:08 amI’ve got a lovely zaxworks title I’ve made into a movie with an alpha channel and I’m working in AE pro and I want it to quiver and shudder very very rapidly. Can anybody suggest a filter or a method?
Ms Pepper
Laurie Pepper replied 20 years, 10 months ago 2 Members · 5 Replies -
5 Replies
-
Mike Clasby
July 1, 2005 at 12:26 amHow about wiggle the layers position and/or scale?
wiggle(20,10)
Change numbers to taste.
-
Laurie Pepper
July 1, 2005 at 4:10 amyeah, I tried that. It’s got to be reallllllly subtle and fast. I’ve fooled around a little with liquify and I think I’m narrowing in on a good look. Thanks.
Ms Pepper
-
Mike Clasby
July 1, 2005 at 4:47 amDan’s quivering Squish and Squash expression could give you the look you want, don’t know why I didn’t think of it before:
maxDev = 20; // max deviation in pixels
spd = 50; //speed of oscillation
decay = 1.0; //how fast it slows downx = scale[0] + maxDev*Math.sin(spd*(time -inPoint))/Math.exp(decay*time);
y = scale[0]*scale[1]/x;
[x,y]This has different numbers for maxDev and spd from the original page:
https://www.motionscript.com/expressions-lab-ae65/squash-and-stretch.html
and is applied to the scale of a layer, just don’t move the anchor point to the bottom (unless you want to) as in the tut, since it’s not reacting to hitting the floor.
Even if it doesn’t work for you it’s fun to use (at least it was for me).Otherwise, Hope you get the liquify you want.
Reply to this Discussion! Login or Sign Up