SFML community forums

Help => General => Topic started by: slotdev on June 22, 2011, 11:32:35 am

Title: frame based animation program
Post by: slotdev on June 22, 2011, 11:32:35 am
Hi

Does anyone know of an animation program, a little like Flash, where you can make a sequence of frames, but then export the XY and image reference (or something similar) to a file which a game can then read and draw all the necessary images in the correct position?

I saw a similar program when I worked on some games made by Konami, which was very good (but written by them, sadly).

Thanks
Title: frame based animation program
Post by: krisando on June 23, 2011, 05:55:40 am
What kind of formats would go in? .swf, .avi, .gif?

I did something similar with .gif, load them in and output a animation sheet. Might be some spriters utilities which may achieve this.
Title: frame based animation program
Post by: slotdev on June 23, 2011, 11:16:55 am
Yeah, my thinking is that you'd import one large image (PNG, I guess) and then from that create frames of animation, and then for each frame, outputs something in XML which has the source XY from the large image, and the destination XY on the screen.

That way you can make quite complicated animations reasonably easily, and you just have the 1 image to load.

From doing some googling, I've found one program called Sprite Vortex but it's not finished, let's say.

Thanks