Understanding Motion Matching {{ currentPage ? currentPage.title : "" }}

Introduction

Whether you are an artist, technical animator or programmer it helps to understand how motion matching works on a theoretical level. It may be tempting to skip the theory but without it you will make poor decisions when setting up motion matching. Motion Matching is not like traditional state based animation, the system is not black and white and when things don't work it is not always clear why. Without a basic knowledge of motion matching you cannot hope to debug it and improve the quality.

The remainder of this page explains important concepts of motion matching, why they are important and how they affect you.

The below video was made with my Unity Motion Matching asset in mind, however, the theory explained within is generic and applies to motion symphony as well.

Watch Video

Firstly, Forget About Animation Clips

Animation clips are a very easy concept to understand and rightly so as they have been used for decades to create and play animations. However, when considering motion matching we need to stop thinking about animation in terms of clips because that is not the way that 'motion matching' thinks about animation. Instead Motion Matching thinks about animation as just a large set of poses in which it can jump to any one of them at any time. 

Sure animation clips are the initial input into your Motion Database but once this information is pre-processed by the system it is no longer in that form. So do yourself a favor and stop thinking about animation in terms of 'clips'. Motion Matching is about a continuous set of poses.

The Underlying Concept of Motion Matching

The underlying concept of motion matching is that we can jump to any pose in any animation at any time. There are no hard coded constraints, explicit transitions or rule based states.

Exactly which pose to jump to at any given frame is based on a set of criteria which will be explained in more detail further down the page. In short the next pose to jump to should:

  1. Have a similar pose to the current pose

  2. Have a trajectory that is similar the desired trajectory

A cost function is used to measure similarity of these two aspects and the lowest cost pose is the one to jump to.

The Motion Database

In order to perform motion matching, we need a dataset to work on. This is the 'motion database' or the 'MotionDataAsset' for Motion Symphony. This is a custom asset that you create, configure and process in the UE4 editor which contains all the pose data, animations and setting required to make motion matching function at runtime.

Once the user setup is complete, the motion data can be pre-processed. This process will generate a list of poses at specific time intervals (usually 0.05 - 0.1s) which can be searched and compared at runtime to achieve motion matching.

What's in a Pose

In order to compare poses, each pose requires a minimum set of data with which to compare. This data is processed and baked into the Motion Database so that it can be searched at runtime. Typically there are two parts of a pose, the character pose and the trajectory:

Character Pose:

In the configuration of any MotionDataAsset, a set of bones will be specified for matching by the user. Usually only the feet and the hips are required but users are welcome to match any bones they desire. The matched atoms include:

  • Body Velocity (Green) - The local velocity of the character (relative to the characters current orientation)

  • Body Yaw Speed - The signed speed of the character’s rotation around the Z axis (Yaw)

  • Bone Position (Yellow) - The position of each matched bone relative to the root

  • Bone Velocity (Yellow Arrow - The velocity of each matched bone relative to the root

Trajectory:

In the configuration of any MotionDataAsset, a set of trajectory points will be specified for matching. Often there are 4-5 points with at least two in the past and the time is measured in seconds. (e.g. -0.66s, -0.33s, 0.33s, 0.66s, 1.0s)

  • Trajectory Point Position - The position of the trajectory point relative to the character

  • Trajectory Point Facing - The rotation of the trajectory point relative to the character

Tracking the Current Pose

In order to match pose the motion matching system has to track the current pose. This is often done by keeping track of and interpolating the current pose based on the last chosen pose and the database. However, Motion Symphony also has an option to track the current pose via a utility node called the 'Motion Snapshot'. This makes it easy  for motion matching transitions between different states.

Desired Trajectory

The desired trajectory is the 'control' input into motion matching which ensures that the next chosen pose is going to help move the character in the direction that the player (or AI Controller) wants it to go. A desired trajectory matching the configuration of the 'motion database' must be generated each frame based on recorded character position history and predicted future motion. The future motion is usually predicted via user input.

{{{ content }}}