├── .gitignore ├── README.md ├── animateFrame.sketchplugin └── Contents │ └── Sketch │ ├── manifest.json │ └── script.cocoascript └── images └── demo.gif /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxaly/animate-frames/HEAD/README.md -------------------------------------------------------------------------------- /animateFrame.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxaly/animate-frames/HEAD/animateFrame.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /animateFrame.sketchplugin/Contents/Sketch/script.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxaly/animate-frames/HEAD/animateFrame.sketchplugin/Contents/Sketch/script.cocoascript -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxaly/animate-frames/HEAD/images/demo.gif --------------------------------------------------------------------------------