So I've been able to piece part of this together, but there's a portion that eludes me and I'm wondering if others could help out. Basically, I'm looking to add a large drifting motion to a shape layer and then on top of that, have it "vibrate", but all taking place within the Position property (as I'm aware that I could simply add say "wiggle(.2,100)" to the Position property, and "wiggle(35,10)" to the Anchor property...). So far, I came up with this:
Code: Select all
(wiggle(.2,100)) - wiggle(35,-10) + wiggle(35,10)
Code: Select all
freq = .2;
amp = 100;
wiggle(freq,amp) - wiggle(freq,amp,1,.5,inPoint) + value
Code: Select all
freq = .2;
amp = 100;
ffreq = 35;
famp = 10;
(wiggle(freq,amp) - wiggle(freq,amp,1,.5,inPoint) + value)
+ wiggle(ffreq,famp) - wiggle(ffreq,famp,1,.5,inPoint) + value
- wiggle(ffreq,-famp) - wiggle(ffreq,-famp,1,.5,inPoint) + value
Cheers,
Magua