animation

Configure Unity Animator controllers, layers, blend trees, and animation events.

3|Updated Apr 8, 2026
One-click install
npx skills add https://github.com/XeldarAlz/KlondikeSolitaire --skill animation-xeldaralz
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: animation
Source: https://github.com/XeldarAlz/KlondikeSolitaire/tree/main/.claude/skills/systems/animation
Command: npx skills add https://github.com/XeldarAlz/KlondikeSolitaire --skill animation-xeldaralz

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Unity animations can be complex to architect and maintain. This skill provides practical guidance to design robust animation workflows in Unity, covering controllers, layers, blend trees, root motion, animation events, and Timeline to deliver smooth, predictable character motion.

Core Features & Use Cases

  • Animator Controller architecture: organize base locomotion vs. upper/override layers, transitions, and parameter usage.
  • Blend Trees & State Machines: craft responsive movement and actions with clean state transitions.
  • Root Motion, IK & Timeline: synchronize gameplay motion with animation data and time-based effects.
  • Animation Events + VFX/Audio: trigger gameplay events and audio/visual effects precisely on frames.
  • Performance & Update Strategies: configure culling, update modes, and pooling to optimize runtime cost.

Quick Start

Create a new Animator Controller with a base layer and a simple Idle-to-Run transition to see the workflow in action.

Frequently Asked Questions about animation

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

FAQPage Schema
How do I structure Unity Animator controllers for complex character motion?

Architect Unity Animator controllers by organizing base locomotion separately from upper body override layers, using clean transitions and parameters to ensure predictable character motion across varied gameplay states.

How do I sync gameplay movement with root motion in Unity?

Synchronize gameplay movement with root motion in Unity by configuring your Animator update modes and applying root motion data directly to the character controller, ensuring animation drives precise physical displacement.

What is the best way to trigger audio and VFX during Unity animations?

Trigger audio and visual effects during Unity animations by using Animation Events placed on specific frames, allowing precise synchronization of gameplay logic and feedback with character motion playback.

How do I optimize Unity animation performance for runtime cost?

Optimize Unity animation runtime cost by configuring Animator culling modes, selecting appropriate update modes, and implementing object pooling strategies to reduce the processing overhead of active state machines.

Can I use Unity Timeline and Blend Trees together for character animation?

Yes, you can use Unity Timeline and Blend Trees together by combining Blend Trees within Animator controllers for responsive locomotion and Timeline for sequencing broader time-based cinematic effects and character animations.

When should I use override layers in a Unity Animator state machine?

Use override layers in a Unity Animator state machine when you need to play animations on specific body parts, like upper body actions, while the base layer continues handling lower body locomotion independently.