ozz-animation

Samples - Offline libraries usage

View millipede sample source code.

Description

Demonstrates usage of ozz offline data structures and utilities.

Initializing WebGL

Concept

Procedurally creates an offline skeleton (ozz::animation::offline::RawSkeleton) and animation (ozz::animation::offline::RawAnimation), whose are then converted to runtime structures for sampling and rendering. The procedural skeleton aims to look like a millipede, made of slices of a leg pair and a vertebra. It makes it easy to tweak the number of joints by adding/removing slices. Both the skeleton and the animation are rebuilt from scratch when the number of joints is changed. This sample does not intend to demonstrate how to do procedural runtime animations, which would rather require to work directly on runtime local-transforms (the output of animation sampling stage, input of the blending stage), like IK would do.

Sample usage

The sample provides the GUI to tweak the number of joints, from 7 (1 slice) up to the maximum number of joints supported by ozz (currently 1023).

Some other playback parameters can be tuned:

Implementation

  1. Create the skeleton object:

    a. Instantiates a RawSkeleton and fills the hierarchy with as many slices (a vertebra and two legs) as needed to reach the requested number of joints. The RawSkeleton object is an offline suitable format, meaning it can be easily programmatically modified: Add/remove/rename joints…

    b. Convert the RawSkeleton (aka offline) object to a runtime ozz::animation::offline::RawSkeleton, using ozz::animation::offline::SkeletonBuilder. This offline utility does the conversion to the runtime format, which can then be serialized or used by the runtime API.

  2. Create the animation object:

    a. Instantiates a ozz::animation::offline::RawAnimation object and fills it with keyframes for every joint of the skeleton, simulating walk cycles. The RawAnimation is an offline suitable format, meaning it is easily programmatically modified: Add/remove keys, add/remove tracks, change duration…

    b. Convert the offline animation to a runtime format, using ozz::animation::offline::AnimationBuilder. This utility takes as input a RawAnimation and outputs a runtime ozz::animation::Animation. The runtime format is the one used for sampling. In opposition with the offline one, it cannot be edited/modified. It is optimized for runtime usage in term of memory layout (cache coherence for sampling) and footprint (compression scheme).

  3. The remaining code of the sample is to allocate runtime buffers and samples animation every frame. See playback sample for more details.