@merci-michel/mm-movieclip
v3.0.0
Published
Merci-Michel Movieclip package
Downloads
24
Keywords
Readme
MM Movieclip
Flash based Movieclip class – acts like a virtual timeline
Usage
Basic
Basic example.
import Movieclip from '@merci-michel/mm-movieclip'
import Render from '@merci-michel/mm-render'
const mc = new Movieclip()
mc.totalFrames = 2;
mc.addFrameScript(1, () => {
mc.stop();
});
mc.play();
function render() {
mc.tick();
}
Render.init();
Render.add(render, mc.fps);
Check docs for more advanced usage
Build
To build the sources with babel
in ./lib
directory :
npm run build
Documentation
To generate the JSDoc
:
npm run docs
To generate the documentation and deploy on gh-pages
branch :
npm run docs:deploy
Testing
To run the tests, first clone the repository and install its dependencies :
git clone https://github.com/MM56/mm-movieclip.git
cd mm-movieclip
npm install
Then, run the tests :
npm test
To watch (test-driven development) :
npm run test:watch
For coverage :
npm run test:coverage