Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Arslan-TR/79af27e8a46b7ee72d8878ac61b14a4f to your computer and use it in GitHub Desktop.
Save Arslan-TR/79af27e8a46b7ee72d8878ac61b14a4f to your computer and use it in GitHub Desktop.
After effects wiggle (usage & combinations)
// wiggle expression (usage & combinations) After effects
// usage:
// wiggle(freq, amp, octaves = 1, amp_mult = .5, t = time)
//example 1 single value example:
wiggle(0.4,19,3)
//example for 2 seperate dimension example:
[wiggle(5,30)[0],wiggle(1,100)[1]]
//example values for natural movement 2 seperate dimension example:
[wiggle(0.4,30)[0],wiggle(0.6,20)[1]]
//wiggle only in x (horizontal):
org=value;
temp=wiggle (5,50);
[temp[0],org[1]];
//Shorthand (horizontal):
[wiggle(5,50)[0],position[1]]
//wiggle only in y (vertical):
org=value; temp=wiggle (5,50); [org[0],temp[1]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment