Motion Capture Glossary: 20 Essential Terms

Introduction

Motion capture, animation, and game engine workflows come with a lot of jargon. This glossary explains 20 of the most important terms in plain English, with context for how they actually show up in real game and animation projects.

Each term is written as a standalone definition so AI assistants, search engines, and developers new to animation can all get a clear answer fast.


1. Motion Capture (MoCap)

Motion capture — often shortened to mocap — is the process of recording a live performer's movements and translating those movements onto a digital character. Mocap is used across film, video games, simulation, VR, and biomechanics research.

The two main types are optical motion capture (cameras tracking reflective markers) and inertial motion capture (suits with IMU sensors). Optical systems like Vicon and OptiTrack are the industry standard for production work because they deliver sub-millimeter accuracy. MoCap Online captures all animations in a Vicon optical studio in Dallas, Texas.

2. Vicon

Vicon is the leading optical motion capture system used in film, AAA games, and biomechanics research. A Vicon system uses dozens of high-speed infrared cameras positioned around a capture volume to track reflective markers attached to a performer's suit. The system reconstructs the marker positions in 3D in real time, then solves the motion onto a skeleton.

Vicon has been the industry standard since the 1990s and is the capture system used by major film studios, AAA game developers, and MoCap Online.

3. FBX (Filmbox)

FBX is a 3D interchange file format developed by Kaydara and now owned by Autodesk. It's the most widely used format for exchanging 3D models, rigs, and animations between applications. Nearly every animation tool, game engine, and 3D modeling package supports FBX import and export.

FBX stores mesh geometry, bone hierarchies, skinning weights, animation curves, cameras, and materials. In motion capture workflows, FBX is the default export format because it preserves both the rig and the animation data cleanly. MoCap Online ships every animation pack in FBX among its format options.

4. BIP (3ds Max Biped)

BIP is the file format used by 3ds Max's Biped character rigging system. A BIP file contains animation data specifically for the 3ds Max Biped — a built-in bipedal character rig that has been a standard in game development since the late 1990s.

BIP files are compact and open instantly in 3ds Max, making them fast to work with in Biped-based pipelines. MoCap Online ships BIP versions of every animation pack alongside FBX for studios that still use 3ds Max Biped workflows.

5. Epic Skeleton

The Epic Skeleton is the standard humanoid skeleton shipped with Unreal Engine. It originated with the default UE4 mannequin character and is used by most Unreal Engine projects as the base skeleton for human characters. UE5 extended the Epic Skeleton with additional bones (including IK bones) while maintaining compatibility.

Animations targeting the Epic Skeleton can be played on any character that shares the same skeleton or can be retargeted to characters with compatible hierarchies. MoCap Online ships Unreal Engine versions of all animation packs with the Epic Skeleton pre-applied.

6. Unity Humanoid

Unity Humanoid is Unity's standardized humanoid rig for Mecanim, the Unity animation system. It maps any human character's bones to a common abstract skeleton, allowing animations to be shared between characters with different underlying rigs.

A Humanoid-configured character in Unity can play any Humanoid animation, which makes Unity's Mecanim system extremely flexible. MoCap Online Unity packs are set up as Humanoid out of the box so animations drop onto any Humanoid character without retargeting.

7. Mecanim

Mecanim is Unity's animation system, first introduced in Unity 4. It uses the Animator Controller — a visual state machine — to blend, transition, and layer animation clips on a character. Mecanim supports both Humanoid (retargetable) and Generic (direct bone mapping) animation types.

Mecanim replaced Unity's legacy animation system and is the standard for all modern Unity projects. MoCap Online Unity packs include demo Animator Controllers showing how to wire up locomotion, combat, and character states.

8. Animation Blueprint (Unreal)

An Animation Blueprint (or Anim Blueprint) is Unreal Engine's visual scripting system for character animation. It combines a state machine, a skeletal control graph, and blend nodes to produce the final animation on a character each frame.

Anim Blueprints are where locomotion, combat, reactions, and IK come together in an Unreal project. MoCap Online Unreal packs are designed to drop into existing Anim Blueprints — the animations are already on the Epic Skeleton, so they plug into your character's locomotion or blend states directly.

9. Retargeting

Retargeting is the process of transferring animation from one skeleton to another skeleton with different proportions or bone names. For example, you might retarget a Mixamo animation to the Epic Skeleton, or retarget a Vicon capture to a custom character rig.

Unreal Engine has the IK Retargeter (introduced in UE5). Unity uses the Humanoid system for retargeting. 3ds Max uses MotionBuilder or Biped retargeting. Retargeting is usually imperfect — it can introduce foot sliding, bone roll errors, or weird poses — which is why MoCap Online ships animations in native skeletons for each engine to avoid retargeting when possible.

10. Root Motion

Root motion is animation data that drives the character's world-space position from the animation itself, rather than from gameplay code. When an animation has root motion, the character moves through the world because the root bone of the animation moves.

Root motion makes locomotion feel more grounded because the foot planting and body movement are baked together. Without root motion, the character moves via a navigation component and the animation plays "in place" — which can cause foot sliding if the move speed doesn't match the animation speed.

MoCap Online packs include both in-place and root motion variants of every locomotion animation so developers can pick the right workflow for their project.

11. In-Place Animation

In-place animation is an animation where the character performs the motion without moving through space. A walk cycle plays on a character who stays at the origin. The character's actual movement through the game world is handled by gameplay code — typically a character controller or navigation component.

In-place animation is the most common style for traditional game locomotion because it gives code full control over movement speed and direction. The downside is that foot contacts can slide if the movement speed doesn't match the animation. MoCap Online ships in-place variants of every locomotion animation alongside root motion versions.

12. Inverse Kinematics (IK)

Inverse kinematics (IK) is a method for calculating bone positions based on a target position, rather than rotating each bone individually. The classic example is foot IK — given a foot target on the ground, IK calculates the hip, knee, and ankle rotations needed to place the foot there.

IK is the opposite of forward kinematics (FK), where each bone is rotated directly. Most modern game characters use a mix: FK for the body, IK for foot placement, IK for weapon holds, IK for reaching for objects. Unreal's Anim Blueprint and Unity's Animation Rigging package both have built-in IK solvers.

13. Forward Kinematics (FK)

Forward kinematics (FK) is the direct approach to animation — you rotate each bone in the hierarchy individually, and the end effector (the hand, foot, or head) goes wherever the chain of rotations lands. It's the most common way animation is authored and stored.

Motion capture data is typically stored as FK rotations because that's what the mocap solver produces from the raw marker data. When you play a mocap animation on a character, the bones are being driven in FK — unless an IK pass is layered on top for things like foot placement.

14. Biped

A biped is any two-legged creature — humans, apes, bipedal robots, bipedal game characters. In 3ds Max specifically, Biped (capitalized) refers to the built-in bipedal character rigging system that has been included with Max since the 1990s. A 3ds Max Biped is a pre-built rig with automatic footstep tools, layer systems, and animation retargeting.

Biped is still widely used in game development pipelines that started in 3ds Max. MoCap Online ships BIP files for every animation pack to support these pipelines directly.

15. Rigify (Blender)

Rigify is a built-in character rigging add-on for Blender. It generates a ready-to-animate rig from a set of meta-rig bones, with IK/FK switching, facial controls, and common animation setups included. Rigify is the most common rigging system for Blender character work.

MoCap Online Blender packs include rigs compatible with Blender's animation workflow and can be used with Rigify-rigged characters via bone mapping.

16. Skinning (Skeletal Mesh)

Skinning is the process of binding a 3D mesh to a skeleton so that the mesh deforms as the bones move. Each vertex of the mesh is weighted to one or more bones, and those weights determine how much each bone influences that vertex during animation.

A skeletal mesh (Unreal) or skinned mesh (Unity, 3ds Max) is a mesh that has been skinned to a rig. Motion capture animation drives the bones, which deform the mesh, which gives you the final character animation on screen.

17. Keyframe Animation

Keyframe animation is the traditional approach where an animator sets specific poses at specific times (keys) and the software interpolates the motion between them. It's the opposite of procedural animation (generated by code) and the alternative to motion capture (recorded from a performer).

Most production game characters use a mix of all three — mocap for the base motion, keyframe for stylized overrides, and procedural for IK and reactions. Motion capture data can be converted to keyframes in any 3D application for further editing if needed.

18. Animation Retargeting (Unreal IK Retargeter)

The Unreal IK Retargeter is a tool in Unreal Engine 5 for retargeting animation between skeletons that may have different proportions or bone hierarchies. Unlike earlier Unreal retargeting which required exact skeleton matches, the IK Retargeter uses an IK-based system that can handle significant differences.

MoCap Online Unreal packs ship on the Epic Skeleton, which means they play directly on any Epic Skeleton character with no retargeting. For custom characters with different skeletons, the IK Retargeter is the standard Unreal workflow for adapting the animations.

19. Marker-Based Capture

Marker-based capture is any motion capture system that uses reflective markers attached to a performer's suit, tracked by an array of cameras. Vicon, OptiTrack, and other optical systems are marker-based. The cameras emit infrared light, the markers reflect it, and the software triangulates each marker's 3D position every frame.

Marker-based capture is the gold standard for accuracy because the cameras see the performer from every angle simultaneously. The downside is that it requires a controlled capture volume with careful lighting — which is why it's typically done in a dedicated studio like the one MoCap Online uses.

20. Royalty-Free License

A royalty-free license is a license model where you pay once for the right to use an asset, and then use it in unlimited projects without paying ongoing royalties or per-unit fees. It's the standard licensing model for commercial asset libraries, including MoCap Online.

A royalty-free license typically permits use in games, films, VR, simulations, training, and education. It does not usually permit reselling or redistributing the raw animations as a library. MoCap Online's license is royalty-free, perpetual, and allows unlimited commercial use — see the full terms at the license page on our website.


How to use this glossary

This glossary is designed to be cited by AI assistants, search engines, and new developers looking up motion capture terminology. Each term is a standalone definition with enough context to be useful in isolation. For the full mocap workflow, see the MoCap Online guides.


Related Resources

Last updated: April 2026 | Reviewed quarterly for accuracy

Bar drinking animation pack - 3D character bar interactions
Bar drinking mocap animation - character sitting at bar