Skip to content

Instantly share code, notes, and snippets.

@FlantasticDan
FlantasticDan / timesplice.jsx
Created October 23, 2020 02:18
Tiktok Time Splice Effect for After Effects
// Tiktok 'Time Splice' Effect After Effects Script v0.1
// by Daniel Flanagan
// Based on the premise of this Tweet by @MatthewPaquette
// https://twitter.com/MatthewPaquette/status/1319432983439380485
// Duplicates and Freeze Frames Selected Source Footage in Slices.
// Source Layer must be selected.
// Set Slice Width
@FlantasticDan
FlantasticDan / worldCoordinateExtractor.mel
Created September 12, 2019 01:13
Takes a parented or grouped object in Maya and extracts it's world space coordinates, applying them to a target object for later use.
// Select the query object and then the target object.
// Set Start and End Frame Range
int $start = 0;
int $end = 0;
// -----------------------------
int $frame = $start;
float $location[];
float $rotation[];
string $obj[] = `ls -sl`;