actuate
Version:
Actuate is a flexible, fast "tween" library for animations
16 lines (13 loc) • 442 B
JavaScript
var path = require('path');
// Get the absolute path to this directory
var dir = path.resolve(__dirname);
module.exports = function() {
return {
"motion$": path.join(dir, "motion"),
"motion/Actuate": path.join(dir, "motion/Actuate"),
"motion/MotionPath": path.join(dir, "motion/MotionPath"),
"motion/actuators": path.join(dir, "motion/actuators"),
"motion/easing": path.join(dir, "motion/easing"),
};
}