Skip to content

Instantly share code, notes, and snippets.

View steveostudios's full-sized avatar

Steve Stone steveostudios

View GitHub Profile
@steveostudios
steveostudios / loop_out
Last active August 29, 2015 14:17
After Effect Expression for looping keyframes
/*
* Looping Keyframes
* apply to paramaters that you want to cycle from last keyframe immediatley to the first (i.e. time-remap loop)
*/
loopOut(type="cycle");
@steveostudios
steveostudios / swinging_text
Last active August 29, 2015 14:17
After Effect Expression for swinging objects.
/*
* Swinging Text
* apply on parameters that you want to swing (i.e. x-rotation)
* credit: Dan Ebberts
*/
veloc = 7;
amplitude = 90
decay = .7;
t = time - inPoint;
@steveostudios
steveostudios / 0_reuse_code.js
Last active August 29, 2015 14:16
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console