$12256 / $11500
For my upcoming submission LPC Fish, I want one of the previews to be a gif of the fish swimming around a pond. However, I can't find anything I can use to animate the sprites into a gif. Any suggestions for programs like that? Thanks! :)
EZGif is best online solution IMO. They have a nice spritesheet cutter too.
I am sure there are plenty of downloadable softwares as well, I just prefer to use EZGif.
"However, I can't find anything I can use to animate the sprites into a gif. Any suggestions for programs like that?"
You can do that with the GIMP. I'm not saying it's easy, but perfectly doable:
If you're not afraid of command line, then you can use ImageMagick, standard package on all distro. It provides a command "convert" which can convert a series of pngs into an animated gif like
convert -delay 100 *.png animated.gif
Another possibility is using ffmpeg. It is for videos by default, but it can be used to create animgif from a list of png files too.
ffmpeg -framerate 30 -pattern_type glob -i '*.png' -r 10 animated.gif
Cheers
bzt
Thanks for your suggestions guys, but I think I wasn't clear enough. I've been using Ezgif for a while, what I need is to create something as if it was gameplay, where the sprites move around on a static tilemap.
oh. look at https://www.screentogif.com/ and https://getsharex.com/
Ok, thank you, that should work. :) I'll put together a script in scratch and see how it goes.