Animation file format
Posted
by
Paul
on Game Development
See other posts from Game Development
or by Paul
Published on 2011-03-19T19:17:58Z
Indexed on
2011/03/20
0:18 UTC
Read the original article
Hit count: 337
I'm trying to make a simple 2D animation file format. It'll be very rudimentary: only an XML file containing some parameters (such as frame duration) and metadata, and some images, each representing a frame.
I'd like to have the whole animation (frames and XML document) packed in a single file. How do you suggest I do that? What libraries are there that would allow easy access to the files inside the animation file itself?
The language I'm using is C++ and the platform is Windows, but I'd rather not use a platform dependent library, if possible.
© Game Development or respective owner