-
Wiggle Y + ease + hold position
Hello!
I’m trying to make a bunch of null layers wiggle regularly in the Y axis and hold their position for about 10 frames before they start wiggling again. I also would like the motion to be smooth, so I guess it would be a good idea to have an “ease in – ease out” motion every time the movement starts and stops.
On top of that, if possible, I would like to smoothly animate the frequency parameter on the wiggle expression through a Slider Control effect.
So far I could only get the wiggle in Y direction expression working:
x = transform.position[0];
y = transform.position[1];
w = wiggle(1, 200);[x, w[1]];
My ultimate goal with this is to have a bunch of points wiggling so I can connect them later on with a beam effect.
Does anybody have a clue on how to write this expression?
Thank you!