Game Animation Glossary: 100+ Terms | MCO

Whether you're a seasoned game animator or just starting your journey in interactive entertainment, understanding the language of game animation is essential. This comprehensive glossary covers over 100 terms that every animator working in games should know, from fundamental concepts to advanced techniques used in modern game development.

A

A-Pose — A default character pose where the arms are held at roughly 45-degree angles from the body. Preferred over the T-pose in many modern pipelines because it reduces shoulder deformation issues when skinning.

Additive Animation — An animation layer that is added on top of a base animation rather than replacing it. Commonly used for breathing, hit reactions, or aiming offsets that overlay locomotion cycles.

Aim Offset — A technique or blend space that adjusts a character's upper body orientation to aim at a target while the lower body continues its current animation, such as walking or idling.

Alpha Channel — A transparency channel in textures or render outputs. In animation, sometimes used in blend weights or masking layers for partial body animations.

Animation Blueprint — In Unreal Engine, a visual scripting system that controls how animations are selected, blended, and transitioned in real time based on gameplay variables.

Animation Clip — A single, discrete piece of animation data, such as a walk cycle, jump, or attack. The fundamental unit of animation in most game engines.

Animation Compression — Techniques used to reduce the memory footprint of animation data without noticeably degrading quality. Common methods include keyframe reduction, curve fitting, and quantization.

Animation Curve — A mathematical curve that defines how a property (position, rotation, scale) changes over time. Typically represented as a spline with tangent handles for controlling interpolation.

Animation Event — See Notify.

Animation Graph — A node-based system for defining animation logic, blending, and state transitions. Used in Unreal Engine (AnimGraph) and similar systems in other engines.

Animation Layer — A system that allows multiple animations to be applied simultaneously to different parts of a character's body, enabling independent upper and lower body animation.

Animation Retargeting — See Retargeting.

Anticipation — One of the 12 principles of animation. A preparatory movement before a main action, such as crouching before a jump, that telegraphs the coming motion to the player.

B

Bake Animation — The process of converting procedural, constrained, or layered animation into explicit keyframe data on every frame. Essential before exporting to game engines.

Blend Shape — See Morph Target.

Blend Space — A system that blends between multiple animations based on one or two input parameters (such as speed and direction). Called Blend Spaces in Unreal Engine and Blend Trees in Unity.

Blend Tree — Unity's implementation of parametric animation blending, allowing smooth transitions between animations based on gameplay variables like velocity or turning angle.

Bone — A single element in a skeleton hierarchy that defines a point of articulation. Bones are connected in parent-child relationships to form a skeleton that drives mesh deformation.

BVH (Biovision Hierarchy) — A text-based motion capture file format that stores skeletal hierarchy and motion data. Widely used in research and as an interchange format for MoCap data.

C

Channel — A single animatable property, such as X-rotation or Y-position. Each bone typically has multiple channels (translate X/Y/Z, rotate X/Y/Z, scale X/Y/Z).

Clavicle — The collarbone joint in a character skeleton. Proper clavicle animation is critical for natural-looking shoulder and arm movements.

Constraint — A rule that limits or drives the behavior of one object based on another. Common types include aim constraints, parent constraints, pole vector constraints, and IK constraints.

Control Rig — A system of controllers, handles, and constraints built on top of a skeleton to make animation easier and more intuitive. Control rigs abstract the raw skeleton into artist-friendly controls.

Cross-Fade — A transition method where one animation blends out while another blends in over a specified duration, creating a smooth handoff between clips.

Cycle — An animation designed to loop seamlessly, such as a walk cycle, run cycle, or idle animation. The last frame matches the first frame to enable continuous playback.

D

DCC (Digital Content Creation) — Software tools used to create digital assets, including 3D modeling and animation packages like Maya, 3ds Max, Blender, and MotionBuilder.

Dead Reckoning — A network prediction technique where a client predicts the position and animation state of remote characters based on their last known state and velocity.

Deformation — How a mesh changes shape in response to skeleton movement. Good deformation ensures that a character's skin stretches and compresses naturally around joints.

E

Ease In / Ease Out — The gradual acceleration at the start and deceleration at the end of a movement. One of the 12 principles of animation, essential for natural-feeling game animations.

Euler Angles — A rotation representation using three angles (typically pitch, yaw, roll) around the X, Y, and Z axes. Intuitive but prone to gimbal lock issues.

Export Settings — Configuration options when saving animation files for use in game engines. Critical settings include scale factor, axis orientation, frame rate, and which data to include.

F

Facial Animation — Animation of a character's face, typically using morph targets or bone-based rigs. Includes expressions, lip sync, and eye movement.

FBX (Filmbox) — The industry-standard file format for exchanging 3D assets including animation data between DCCs and game engines. Originally developed by Kaydara, now owned by Autodesk.

FK (Forward Kinematics) — An animation method where each joint's rotation is set explicitly, and child joints inherit the transformations of their parents. Natural for arms and spine animation.

Follow Through — The continuation of movement after the main action has stopped. Secondary elements like hair, clothing, or a character's ears continue moving due to inertia.

Frame — A single point in time within an animation. Animation is a sequence of frames displayed in rapid succession to create the illusion of movement.

Frame Rate — The number of frames displayed per second (fps). Common rates in games are 30fps and 60fps. MoCap data is often recorded at 60fps, 120fps, or higher.

Freeze Transformations — Resetting an object's transform values to zero (or identity) at its current position. Important for clean animation setups and export.

G

Gimbal Lock — A loss of one degree of rotational freedom that occurs when two rotation axes align, causing unexpected behavior. A common problem with Euler angle rotation that quaternions solve.

Graph Editor — A DCC tool that displays animation curves visually, allowing animators to edit the timing and interpolation of keyframes with precision.

H

Hierarchy — The parent-child relationship structure of bones in a skeleton. The hierarchy defines how transformations propagate from parent bones to their children.

Hip Joint / Pelvis — The root of most character skeleton hierarchies. All body movement typically originates from or passes through the hip/pelvis joint.

Humanoid Rig — A standardized skeleton configuration for human characters. Unity's Humanoid system and Unreal's Mannequin define specific bone naming and hierarchy conventions.

I

IK (Inverse Kinematics) — An animation technique where the position of an end effector (like a hand or foot) is set, and the system calculates the rotations of parent joints to reach that target. Essential for foot planting and reaching.

In-Betweening — The process of generating intermediate frames between keyframes to create smooth motion. In game engines, this is typically handled automatically through interpolation.

Interpolation — The mathematical method used to calculate values between keyframes. Common types include linear, cubic (spline), and stepped (no interpolation).

J

Joint — Often used interchangeably with bone. In Maya, joints are the specific objects that make up a skeleton hierarchy.

Jiggle Bone — A bone driven by physics simulation rather than keyframe animation, used for secondary motion on elements like hair, tails, capes, or body parts.

K

Keyframe — A frame where an animator explicitly sets a value for a property. The engine interpolates between keyframes to produce smooth animation.

Kinematic Chain — A series of connected bones from a root to an end effector. IK solvers operate on kinematic chains to calculate joint rotations.

L

Layered Animation — A technique of combining multiple animation layers, each affecting different bones or adding to existing animation. Enables complex, composite animations from simpler parts.

LOD (Level of Detail) — A system that reduces the complexity of distant objects. For animation, LOD can mean reducing bone counts, lowering update rates, or simplifying blend logic for far-away characters.

Locomotion — The system of animations and logic that handles character movement, including walking, running, strafing, turning, starting, and stopping.

Looping — The ability of an animation to play continuously without visible seams. Proper looping requires matching start and end poses, velocities, and root motion.

M

Marker — A reflective sphere placed on a motion capture performer's body or face. Optical MoCap systems track markers to reconstruct movement data.

Mesh — The 3D polygonal geometry that represents a character's visible surface. The mesh is deformed by the skeleton through skinning.

MoCap (Motion Capture) — The process of recording real human movement and translating it into digital animation data. Technologies include optical (marker-based), inertial (IMU suits), and markerless (computer vision).

Montage — In Unreal Engine, a system for playing animation sequences with sections, branching, and blending. Used for complex actions like combo attacks or cinematic sequences.

Morph Target — A stored deformation of a mesh that can be blended with the base shape. Widely used for facial expressions and corrective shapes. Called Blend Shapes in Maya and Shape Keys in Blender.

Motion Matching — An advanced animation technique that searches a large motion database to find the best matching pose for the current gameplay context, producing highly fluid and responsive animation.

N

NLA Editor (Non-Linear Animation) — Blender's system for layering, blending, and sequencing animation clips (called Actions) on a timeline without destructive editing.

Notify / Animation Notify — An event marker placed on a specific frame of an animation that triggers gameplay logic, such as playing a footstep sound, spawning a particle effect, or activating a hitbox.

O

Onion Skinning — A visualization technique that shows ghosted previous and future frames of an animation, helping animators see the motion arc and spacing of their work.

Overshoot — When a moving element goes past its target before settling into its final position. Used to add energy and snap to animations.

P

Pelvis — See Hip Joint / Pelvis.

Physically-Based Animation — Animation that is generated or influenced by physics simulation, including ragdoll, procedural secondary motion, and dynamic reactions.

Pivot — The point around which an object rotates. Setting correct pivots is crucial for natural-looking animation, especially for props and mechanical objects.

Playback Speed — The rate at which an animation is played, which can be modified at runtime. Slowing or speeding up animations is common for gameplay tuning.

Pose — The complete set of bone transformations at a single point in time. A pose defines the character's body position at any given frame.

Procedural Animation — Animation generated algorithmically at runtime rather than from pre-authored data. Examples include IK foot placement, look-at systems, and physics-driven secondary motion.

Q

Quaternion — A four-component mathematical representation of rotation (x, y, z, w) that avoids gimbal lock and enables smooth interpolation. The standard rotation format in game engines.

R

Ragdoll — A physics simulation applied to a character's skeleton, typically used for death animations or hit reactions. Each bone becomes a rigid body connected by joints with angular limits.

Reference Pose — See Bind Pose.

Retargeting — The process of transferring animation data from one skeleton to another with different proportions or hierarchy. Essential for reusing MoCap data across different character models.

Root Bone — The topmost bone in a skeleton hierarchy, usually located at the character's feet or hips. All other bones are descendants of the root.

Root Motion — Animation-driven character movement where the character's world-space position is determined by the root bone's movement within the animation clip, rather than by code.

S

Sample Rate — The frequency at which motion capture data is recorded, measured in frames per second. Higher sample rates capture faster movements more accurately.

Skeleton — A hierarchy of bones that defines the articulation structure of a character. The skeleton drives mesh deformation and is the target for animation data.

Skinning — The process of binding a mesh to a skeleton so that the mesh deforms when bones move. Each vertex is assigned weights that determine how much it is influenced by each bone.

Slerp (Spherical Linear Interpolation) — A method of interpolating between two rotations along the shortest path on a sphere. Produces smoother rotation blending than linear interpolation of Euler angles.

Slot — In animation systems, a named channel for playing layered animations. Different slots can play independent animations simultaneously on the same character.

State Machine — A system that manages animation states (idle, walk, run, jump) and the transitions between them based on gameplay conditions. The backbone of most game animation systems.

Sub-Step — An additional simulation tick within a single frame to improve the accuracy of physics-based animation or IK calculations.

T

T-Pose — A default character pose where the arms are extended straight out horizontally. Commonly used as a bind pose for skinning, though A-pose is increasingly preferred.

Tangent — A handle on a keyframe in the graph editor that controls the curve's slope, and therefore the acceleration and deceleration of the animated property.

Timeline — A visual representation of animation over time, showing keyframes, curves, and the playback position. The primary workspace for animators in most DCCs.

Transition — The blend between two animation states. Transitions define the duration, blend curve, and conditions for switching between states in a state machine.

Twist Bone — An additional bone placed between two joints (typically in the forearm or upper arm) that distributes rotation to prevent mesh collapse during twisting motions.

U

Unit Scale — The relationship between one unit in the DCC or engine and a real-world measurement. Mismatched unit scales are one of the most common FBX import/export problems.

USD (Universal Scene Description) — A file format and framework developed by Pixar for describing 3D scenes. Increasingly used in game pipelines alongside FBX for scene interchange.

V

Vertex Weight — A value (0 to 1) assigned to a mesh vertex that determines how much a specific bone influences that vertex during deformation. See also Weight Painting.

W

Weight Painting — The process of manually assigning and adjusting vertex weights on a mesh to control how each bone deforms the surrounding geometry. Critical for clean deformation at joints.

World Space — A coordinate system relative to the game world's origin. Animations can operate in world space (absolute positions) or local space (relative to the character).

X-Z

X-axis / Y-axis / Z-axis — The three perpendicular axes of 3D space. Different software uses different conventions for which axis is "up" (Y-up in Maya/Unity, Z-up in 3ds Max/Unreal), which is a common source of import issues.

Zero Out — Resetting all transform channels of a control or bone to their default values. A standard starting point for beginning new animation work on a rig.

Conclusion

Mastering the vocabulary of game animation helps you communicate effectively with your team, troubleshoot technical issues faster, and understand documentation for the tools you use every day. Bookmark this glossary and refer back to it whenever you encounter an unfamiliar term. As the industry evolves with technologies like motion matching, machine learning, and real-time motion capture, new terms will continue to emerge, but the fundamentals covered here will remain the foundation of game animation for years to come.

Looking for professional motion capture animation data for your game project? MoCap Online offers high-quality FBX animation packs ready for Unreal Engine, Unity, Blender, and more.

See Professional Motion Capture in Action

Understanding animation terminology is essential, but seeing high-quality motion capture data in practice brings these concepts to life. MoCap Online provides professionally captured animation packs in FBX, BIP, Unreal Engine, Unity, Blender, and iClone formats — ideal for studying real-world animation techniques and accelerating your game development workflow.

Browse the Full Animation Library → | Try Free Animations