We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#48 #67 #30 just check if there are any script to make definitions for this type of spritesheet.
for dealing a sprite with 3 x 4 / 32x32 px boxes
The text was updated successfully, but these errors were encountered:
you could split it into separate images with imagemagick magick convert -crop 32x32 spritesheet.png part.png
magick convert -crop 32x32 spritesheet.png part.png
you can merge 12 32x32 images like that into that spritesheet magick montage part*.png -tile 3x4 -background #00000000 -geometry 32x32 spritesheet.png
magick montage part*.png -tile 3x4 -background #00000000 -geometry 32x32 spritesheet.png
Sorry, something went wrong.
No branches or pull requests
#48
#67 #30
just check if there are any script to make definitions for this type of spritesheet.
for dealing a sprite with 3 x 4 / 32x32 px boxes
The text was updated successfully, but these errors were encountered: