Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi! It's crucial that the animations are laid out in a horizontal sprite sheet. That way, I can easily create animations with them in Unity. Right now I need to make the sprites then put them in sprite sheet.

Exporting animations to a spritesheet would save a ton of manual labor!

Hi! Thank you for your purchange!

I agree with you. It's always good to give varied options, because each developer likes to work in a different way.

I will try to implement this feature in the next updates.

Meanwhile, you can use ImageMagic program together with a .bat code to create a spritesheet with just 1 click.

https://www.imagemagick.org/

Code from the .bat file I use to create spritesheets:

==========================

@echo off

set IM_PATH="C:\Program Files\ImageMagick-7.1.1-Q16-HDRI\magick.exe"

set INPUT_FOLDER="YOUR_SOURCE_FOLDER_HERE"

set OUTPUT_FILE="YOUR_DESTINATION_FOLDER_HERE\spritesheet.png"

%IM_PATH% montage %INPUT_FOLDER%\*.png -geometry 64x64 -background transparent -filter Catrom %OUTPUT_FILE%

echo Conversion completed.

pause

===========================

1. Change "YOUR_SOURCE_FOLDER_HERE" with the folder path containing the separate sprites.

2. Change "YOUR_DESTINATION_FOLDER_HERE" with the folder path where the generated spritesheet will be saved.

3. Save the text file with a .bat extension.

I hope this helps you out for now, and thanks for your feedback!