AnimationSerializer         Simple serializer for animations

Introduction

This is a simple serializer to save and load an animation (animationtrack) to and from disk in binary format.

It was created for use with the Camcorder camera motion recorder, but could be used for any animationtrack keyframe based animation.

Code

Usage

Saving an animation
AnimationSerializer animSerializer;
animSerializer.exportAnimation(animation, "theAnimation.anim");
Loading an animation
AnimationSerializer animSerializer;
Animation* anim = animSerializer.importAnimation("theAnimation.anim");

See Also
see_also.jpg


Camcorder - the last part of the page shows how to use the camera recorder helper class with the animation serializer.