1
Fork 0
Go to file
stysmmaker 1ccd804f24
Oops again
2021-04-13 22:48:20 -04:00
src Oops again 2021-04-13 22:48:20 -04:00
.eslintignore :) 2021-04-13 20:49:29 -04:00
.eslintrc.json :) 2021-04-13 20:49:29 -04:00
.gitignore Initial commit 2021-04-13 20:47:54 -04:00
LICENSE Initial commit 2021-04-13 20:47:54 -04:00
README.md Fix typo 2021-04-13 22:33:56 -04:00
jest.config.js :) 2021-04-13 20:49:29 -04:00
package-lock.json :) 2021-04-13 20:49:29 -04:00
package.json Oops 2021-04-13 22:43:05 -04:00
rollup.config.js :)) 2021-04-13 20:49:30 -04:00

README.md

mmkr

It's just my handle but shorter

This project was created thanks to the help of create-expression-lib!

Overview

This expressions library is mostly a collection of tools I find personally useful. Some pertain to general tasks and others more specific, i.e. YTPMV/音MAD.

Usage

  1. Download the latest version of mmkr.jsx from the releases page.
  2. Import mmkr.jsx into your After Effects project.
  3. Reference the library in your expressions like so:
const MMKR = footage('mmkr.jsx').sourceData.get_functions();

Functions will now be usable from the MMKR object:

const MMKR = footage('mmkr.jsx').sourceData.get_functions();
MMKR.inertial_bounce(5, 2, 4); // Apply a bounce to the current property

You can also destructure the returned object:

const { inertial_bounce } = footage('mmkr.jsx').sourceData.get_functions();
inertial_bounce(5, 2, 4);

Development

# Automatically refresh .jsx output file
npm run watch

# Once off build
npm run build

# Distribute release
npm run release