├── .gitignore ├── README.md ├── after_effects_spritesheet_exporter ├── (support) │ ├── Sheetifier.jsx │ ├── SheetifyDialog.jsx │ ├── SheetifyDialogContents.jsx │ └── SheetifyExporter.jsx ├── README.md ├── Sheetify.jsx └── spritesheet_test.aep ├── photoshop_spritesheet_exporter ├── README.md ├── Sprite Sheet from Photoshop Layers.jsx └── sample_images │ ├── SheetTest00000.psd │ ├── SheetTest00001.psd │ ├── SheetTest00002.psd │ ├── SheetTest00003.psd │ ├── SheetTest00004.psd │ ├── SheetTest00005.psd │ ├── SheetTest00006.psd │ ├── SheetTest00007.psd │ ├── SheetTest00008.psd │ ├── SheetTest00009.psd │ ├── SheetTest00010.psd │ ├── SheetTest00011.psd │ ├── SheetTest00012.psd │ ├── SheetTest00013.psd │ ├── SheetTest00014.psd │ └── SheetTest00015.psd ├── screenshots └── after_effects_spritesheet_exporter.gif └── spritesheet_splitter ├── README.md ├── Sprite Sheet Splitter.jsx └── TestSheet.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/README.md -------------------------------------------------------------------------------- /after_effects_spritesheet_exporter/(support)/Sheetifier.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/after_effects_spritesheet_exporter/(support)/Sheetifier.jsx -------------------------------------------------------------------------------- /after_effects_spritesheet_exporter/(support)/SheetifyDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/after_effects_spritesheet_exporter/(support)/SheetifyDialog.jsx -------------------------------------------------------------------------------- /after_effects_spritesheet_exporter/(support)/SheetifyDialogContents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/after_effects_spritesheet_exporter/(support)/SheetifyDialogContents.jsx -------------------------------------------------------------------------------- /after_effects_spritesheet_exporter/(support)/SheetifyExporter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/after_effects_spritesheet_exporter/(support)/SheetifyExporter.jsx -------------------------------------------------------------------------------- /after_effects_spritesheet_exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/after_effects_spritesheet_exporter/README.md -------------------------------------------------------------------------------- /after_effects_spritesheet_exporter/Sheetify.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/after_effects_spritesheet_exporter/Sheetify.jsx -------------------------------------------------------------------------------- /after_effects_spritesheet_exporter/spritesheet_test.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/after_effects_spritesheet_exporter/spritesheet_test.aep -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/README.md -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/Sprite Sheet from Photoshop Layers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/Sprite Sheet from Photoshop Layers.jsx -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00000.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00000.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00001.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00001.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00002.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00002.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00003.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00003.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00004.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00004.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00005.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00005.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00006.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00006.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00007.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00007.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00008.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00008.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00009.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00009.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00010.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00010.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00011.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00011.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00012.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00012.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00013.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00013.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00014.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00014.psd -------------------------------------------------------------------------------- /photoshop_spritesheet_exporter/sample_images/SheetTest00015.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/photoshop_spritesheet_exporter/sample_images/SheetTest00015.psd -------------------------------------------------------------------------------- /screenshots/after_effects_spritesheet_exporter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/screenshots/after_effects_spritesheet_exporter.gif -------------------------------------------------------------------------------- /spritesheet_splitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/spritesheet_splitter/README.md -------------------------------------------------------------------------------- /spritesheet_splitter/Sprite Sheet Splitter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/spritesheet_splitter/Sprite Sheet Splitter.jsx -------------------------------------------------------------------------------- /spritesheet_splitter/TestSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanliston/adobe-spritesheet-scripts/HEAD/spritesheet_splitter/TestSheet.png --------------------------------------------------------------------------------