├── AnimateMate.sketchplugin └── Contents │ ├── Resources │ └── icon.icns │ └── Sketch │ ├── commands.js │ ├── library │ ├── Animate.js │ ├── Animation.js │ ├── Dialog.js │ ├── Gui.js │ ├── Utils.js │ ├── easing.js │ └── gifsicle │ └── manifest.json ├── LICENSE ├── README.md └── sketchpack.json /AnimateMate.sketchplugin/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/commands.js -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/library/Animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/library/Animate.js -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/library/Animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/library/Animation.js -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/library/Dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/library/Dialog.js -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/library/Gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/library/Gui.js -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/library/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/library/Utils.js -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/library/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/library/easing.js -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/library/gifsicle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/library/gifsicle -------------------------------------------------------------------------------- /AnimateMate.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/AnimateMate.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/README.md -------------------------------------------------------------------------------- /sketchpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creatide/AnimateMate/HEAD/sketchpack.json --------------------------------------------------------------------------------