unreal-animation-blending

Select, implement, and debug animation blending mechanisms in Unreal Engine 5.8 Animation Blueprints.

Updated May 28, 2023
One-click install
npx skills add https://github.com/steveulrich/ProjectB --skill unreal-animation-blending-steveulrich
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: unreal-animation-blending
Source: https://github.com/steveulrich/ProjectB/tree/main/.cursor/skills/unreal-animation-blending
Command: npx skills add https://github.com/steveulrich/ProjectB --skill unreal-animation-blending-steveulrich

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Choosing the wrong animation blending mechanism in Unreal Engine leads to foot sliding, phase drift, animation popping, and tangled AnimGraphs. This Skill guides you to the smallest correct mechanism—Blend Space, State Machine, Montage, Layered Blend per Bone, additive, Sync Group, or Inertialization—and provides implementation, tuning, and troubleshooting procedures for UE 5.8. ## Core Features & Use Cases - Mechanism Selection: A decision table maps each animation problem (locomotion, strafing, aim, regional actions, transitions) to the correct blend mechanism and flags common misuses. - Implementation Patterns: Step-by-step AnimGraph node orders for idle/walk/run Blend Spaces, 2D strafing, Aim Offsets, run-while-firing layering, reloads, additive recoil, and hit reactions. - Troubleshooting & Acceptance: A symptom-to-cause table covering double-stepping, foot sliding, inertialization errors, Slot conflicts, and network root-motion divergence, plus a staged debug sequence. - Use Case: A character's feet double-step during walk/run blends. The Skill directs you to place gait clips in a Sync Group with matching LeftFootDown/RightFootDown Sync Markers instead of lengthening crossfades. ## Quick Start Use the unreal-animation-blending skill to choose and configure the correct blending method for a character that must reload while moving.

Frequently Asked Questions about unreal-animation-blending

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I blend walk and run animations in Unreal Engine 5?▼

Use a Blend Space 1D with a Speed axis in cm/s, placing idle at zero and gait samples at their authored travel speeds. Put compatible gait clips in the same Sync Group and add matching foot Sync Markers when phase drift is visible.

Blend Space vs State Machine in Unreal Engine animation?▼

Use a Blend Space when the pose is a smooth function of one or two continuous measured values like speed and direction. Use a State Machine for persistent discrete modes such as grounded, falling, or swimming where entry and exit rules matter.

How do I play an upper-body animation while running in Unreal Engine?▼

Play the action as a Montage on an UpperBody Slot, then combine it with the locomotion cached pose using Layered Blend per Bone starting at the intended spine bone. Verify pelvis ownership, shoulder seams, and blend-out while moving.

When should I use inertialization instead of a crossfade in Unreal Engine?▼

Use inertialization for short transitions under 0.4 seconds between reasonably compatible moving poses where source evaluation is no longer needed. Avoid it when source Notifies must still fire or poses are extremely different.

Why do feet slide or double-step during animation blends in Unreal Engine?▼

Double-stepping means gait clips are out of phase; fix it with a Sync Group and matching foot markers. Sliding at steady speed means the sample's authored speed differs from actual movement speed, so place samples at measured speeds.

Is Dead Blending safe to use in Unreal Engine 5.8?▼

No. UE 5.8 labels the Dead Blending node experimental and does not recommend shipping projects that depend on it. Use it only for evaluation with an explicit inertialization or standard-blend fallback.