This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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`; |
NewerOlder