Third-person shooter animation exists under a constraint that no other genre faces quite as directly: the camera always sees the character's full body, yet the player's primary focus is the crosshair. Every animation decision must serve both a functional purpose (communicating weapon state, movement intent, and health) and an aesthetic one (looking excellent while doing it).
This guide covers the complete TPS character animation system — from the foundational constraints of the genre all the way through upper/lower body separation, cover system design, aim offset implementation, and Unreal Engine 5 setup. If you're building a third-person shooter, this is the animation reference you need.
TPS Animation Constraints: The Full-Body Visibility Problem
The defining challenge of third-person shooter animation is that the player always sees their own character from a roughly 3/4 behind-and-above camera angle. This creates pressures that don't exist in first-person games:
- Every animation must look good in motion, not just at key frames. The camera follows the character, so poor transitions and pop frames are always visible.
- Foot placement is always visible. IK (inverse kinematics) foot placement on uneven terrain is much more critical in TPS than in FPS, where the feet are never seen.
- The character's back and shoulders carry a huge portion of the visual storytelling. A tense, coiled sprint posture communicates urgency; a relaxed saunter communicates confidence. These reads happen through the back and shoulders in TPS games.
- Weapon animations must be readable at camera distance. A reload must be visible and recognizable from 3–5 meters of virtual camera distance.
Lean and Cover System Design
Cover and lean systems are the mechanical heart of most TPS games. Gears of War popularized sticky cover; Uncharted popularized fluid contextual cover; The Division uses a hybrid. All of them rely on animation systems with three core requirements.
Cover Entry and Exit Animations
Cover entry animations must:
- Match the character's approach velocity (running entry vs. walking entry feel different)
- Snap the character to the cover surface visually, even if mechanics use a sticky system
- Transition smoothly from locomotion without a visible full-stop before the cover pose
Cover exit is often overlooked. Author at least two exit variants: a quick dash exit (sprint starts immediately) and a cautious stand-up (transitions to upright idle/walk). The choice between them can be player-controlled or context-determined.
Lean Peek Animations
Lean left and lean right animations require the character to remain planted at the cover wall while the upper body extends laterally around it. The best implementations use:
- A full lean animation for ADS lean (weapon raised, eye behind sight)
- A lesser lean for blind fire (weapon extended around corner without raising to aim)
- Smooth blend between center cover idle and full lean, driven by analog input
The foot position stays planted throughout. Upper body rotation and lateral lean is driven by additive animation or procedural bone adjustment on the spine and shoulder bones.
Low Cover vs. High Cover
Characters can crouch behind low obstacles (waist-height walls) or press against high obstacles (chest-height or head-height walls). Each requires a different cover idle animation set:
- Low cover idle: full crouch, back against the wall
- High cover idle: upright or slight crouch, back flat to wall surface
- Transition between low and high: stand-up animation when moving between cover heights
ADS (Aim Down Sights) in TPS vs. FPS
ADS in third-person shooters is fundamentally different from FPS ADS. In FPS, ADS brings the weapon to the eye and fills the screen with the sight picture. In TPS, ADS does several different things depending on the game's design philosophy.
Full TPS ADS
Some TPS games (XCOM 2, certain cover shooters) have no true ADS — the camera stays pulled back and accuracy is purely mechanical. Animation shows the character raising the weapon toward the target, but there's no sight alignment animation.
Hybrid TPS ADS (Most Common)
Games like Gears 5, Ghost Recon, and The Division use a hybrid: pressing ADS pulls the camera slightly closer and over the shoulder, while the character animation shows the weapon properly raised to shooting position. The animation must:
- Raise the weapon to a consistent eye-line height regardless of the aim direction
- Adjust the character's upper body posture to show proper shooting stance
- Blend seamlessly with aim offset so the character aims at the actual cursor target
Over-Shoulder TPS ADS
Some games (Resident Evil Village, The Last of Us) use a significant camera shift to put the weapon in the right half of the screen during ADS. The character animation turns their body to the left (or right for left-hand shoulder cameras), with the weapon on the dominant side now more centered in camera. This requires a separate "ADS" pose set from the hip-fire pose set.
Weapon Swap Animations
Weapon swap — the animation of holstering one weapon and drawing another — is one of the most frequently repeated animation events in any shooter. Quality here matters enormously.
The Swap Sequence
A standard weapon swap animation follows this structure:
- Holster/stow: current weapon moves to its storage position (back holster, hip holster, shoulder sling). Hand releases grip.
- Transition neutral: very brief moment where both hands are empty or moving between positions.
- Draw: hand moves to the new weapon's storage position. Grip established.
- Ready position: weapon raised to hip-fire or ADS ready position.
The total swap animation should be 0.8–1.5 seconds. Slower swaps feel realistic; faster swaps feel arcadey. Match swap speed to your game's pacing.
Hotkey vs. Scroll Weapon Swap
When players cycle through weapons quickly (scroll wheel), the swap animation should be interruptible. If a player swaps to weapon 2, then immediately swaps to weapon 3, the system should skip to the new draw rather than forcing the full holster-draw sequence for weapon 2.
Reload While Moving
Upper/lower body separation (covered in detail below) is what makes reload-while-moving possible. The key animation challenges are:
- Magazine drop timing: the empty magazine must appear to fall from the weapon at the moment the release button is pressed in the animation, not at a fixed time offset
- Hand path during reload: the reloading hand follows the weapon, which itself follows the arm, which is affected by locomotion. Procedural aim matching keeps the reload hands properly attached to the weapon during movement
- Partial reload vs. full reload: if the player starts a reload with partial magazine remaining, author a separate "tactical reload" animation that differs from the "slide lock" empty reload. In tactical reload, the partial magazine is retained (or at least handled differently)
Soft-Aim vs. Hard-Aim
Many TPS games distinguish between "soft aim" (walking with weapon raised but not ADS) and "hard aim" (ADS). These require different animation states:
- Soft aim / hip fire: weapon raised to mid-chest, elbows bent, weapon points roughly toward where the character is facing. Accuracy is reduced mechanically.
- Hard aim / ADS: weapon raised to eye line, elbows more extended, body posture compressed toward the camera direction. Maximum accuracy.
The transition between soft and hard aim should take 0.15–0.25 seconds. Instant transitions feel janky; transitions longer than 0.3 seconds feel sluggish and penalize aggressive players.
Aim Offset Implementation
Aim offset is the system that allows a character to aim in any direction while their feet move in the locomotion direction. Without aim offset, a character running left while aiming right would look completely broken.
Building an Aim Offset Pose Set
A minimal aim offset set requires 9 poses arranged in a 3x3 grid:
- Left / Center / Right on the horizontal axis
- Up / Center / Down on the vertical axis
Each pose shows the character's upper body (from the waist up) in the corresponding aiming direction. The animation system blends between adjacent poses based on the aim vector, producing smooth in-between aiming for all directions.
Aim Offset Bone Hierarchy
In Unreal Engine 5, aim offset typically affects the spine bones from the pelvis upward. The split point between lower body (locomotion-driven) and upper body (aim offset-driven) is usually at the spine_01 or spine_02 bone depending on the rig.
Be careful with shoulder bones if your rig stores arm position partially in the shoulder vs. the upper arm. Test aim offset at all extreme angles to catch shoulder deformation issues.
Upper Body / Lower Body Separation (2-Layer Animation)
Two-layer animation — where the lower body runs the locomotion state machine and the upper body runs a weapons/actions state machine — is the foundational architecture of most TPS animation systems.
Setting Up the Two-Layer System
In Unreal Engine 5's Animation Blueprint:
- Create a base locomotion state machine for the full body
- Add a "Layered Blend Per Bone" node
- Set the layer blend's base pose to the locomotion output
- Set the blend bone to spine_01 (or your split-point bone) with "Branch Filter" mode
- Feed the upper body weapon state machine output into the blend layer
The result: lower body always plays locomotion animations (walk, run, crouch, strafe) while the upper body can independently play weapon states (reload, fire, swap, idle-with-weapon).
Per-Bone Blend Weight
The blend weight between upper and lower body doesn't have to be binary. During a sprint, you might want the upper body to partially follow the sprint arm-pump animation (weight 0.3 on locomotion) while still showing the weapon (weight 0.7 on weapon layer). Tune these per locomotion state for the best visual result.
Grenade Throw + Locomotion Blend
Grenade throwing while moving is a classic TPS animation challenge. The throw animation involves both arms (pull pin, transfer to throwing hand, arm back, throw, follow-through), which conflicts with the locomotion arm swing.
The solution is to use the two-layer system but temporarily increase upper body blend weight to near-1.0 during the throw sequence, then blend back down to the normal weapon layer weight after the throw completes. This lets the legs continue running throughout while the arms commit to the throw.
The throw animation itself should have root motion disabled (or extracted separately) to prevent the character from physically moving forward with the throw momentum, which would fight the movement input.
Melee in TPS
Melee in a third-person shooter occupies an interesting design space: it must be fast, punishing, and readable as a deliberate choice rather than an accident. Because the camera sees the full body, melee animations must be visually expressive.
Weapon Butt Strike
The most common TPS melee is a rifle butt strike: the character swings the weapon horizontally or drives it forward like a punch. This animation:
- Takes 0.4–0.6 seconds to deliver damage
- Has a short wind-up (weapon pulls back slightly before the strike)
- Has a brief recovery (weapon returns to hip-fire position)
Knife Melee Override
If the player has a knife equipped (or can quick-access one), the melee animation changes to a knife stab or slash. This is a full upper-body override — the weapon layer switches from the current weapon to a knife animation set for the duration of the melee combo.
TPS Camera Occlusion Issues with Animations
Because the TPS camera sits behind and above the character, certain animations can cause the character geometry to block the camera view:
- Crouching: may cause the character's back and head to fill the upper portion of the screen. Adjust camera arm length and pitch during crouch states.
- Climbing animations: when a character pulls themselves up over an obstacle, they temporarily face away from the camera direction with arms extended — potentially clipping into the camera. Use camera spring arm collision settings to push the camera forward.
- Wall press / cover: the character pressing against a wall may place the camera inside wall geometry. Always set up collision presets for the camera spring arm to avoid this.
Reference Games for TPS Animation Study
- Fortnite: Excellent example of readable TPS animations at high movement speed. The weapon swap animations and build-mode transitions are notably well-executed.
- Gears 5: The gold standard for cover system animation. Study the entry, exit, lean, and blind-fire animations carefully.
- Ratchet & Clank: Rift Apart: Demonstrates how TPS animation can be expressive and stylized while remaining functionally clear. The weapon variety and corresponding idle stances are excellent.
- Ghost Recon Wildlands / Breakpoint: The most detailed military TPS animation systems available for study. Prone, crawl, ADS while prone, and stealth movement animations are all worth analyzing.
- The Last of Us Part II: Exceptional contextual animation blending. The way Ellie's animations respond to environment height, surface type, and threat proximity is the benchmark for cinematic TPS animation.
UE5 TPS Animation Setup from Starter Content
Unreal Engine 5 ships with the Third Person template, which uses the Manny/Quinn mannequin and includes a basic animation blueprint. Here's what you need to customize from the default setup:
- Replace the default walk/run animations with your mocap assets. The default UE5 locomotion uses procedurally generated movement that suits the template but looks generic. Professional mocap packs include walk, run, and strafe animations matched to the UE5 Mannequin skeleton via IK retargeting.
- Add the Layered Blend Per Bone node to the Animation Blueprint to enable upper/lower body separation.
- Create an Aim Offset asset from your 9-pose aim offset set and wire it into the upper body layer output before it reaches the blend node.
- Set up a weapon state machine in the upper body layer with states for idle (with weapon), ADS, reload, fire, swap, and melee.
- Configure the Foot IK using UE5's built-in IK Rig system to ensure proper foot placement on uneven terrain — critical in TPS where feet are always visible.
Frequently Asked Questions
How many animation clips does a typical TPS character need?
A well-equipped TPS character typically needs 80–150 animation clips for a single weapon type, including locomotion variants (idle, walk, run, strafe, crouch), weapon actions (aim, reload, fire), cover states, and melee. Multi-weapon games multiply this by the number of weapon categories.
Can I use FPS animations retargeted to TPS characters?
Not directly. FPS animations are authored with weapon placement optimized for screen-center visibility, while TPS animations must work at camera distance with the full body visible. FPS reload animations in particular are rarely usable in TPS without significant editing. Always use purpose-authored TPS animations.
What's the best way to handle character-to-character variation in a TPS game?
Use a shared animation set on a shared skeleton (like the UE5 Mannequin) and differentiate characters through additive animation layers, blend shapes, and movement parameter tuning (speed, stride length). This is far more efficient than authoring separate animation sets per character.
How do I prevent foot sliding in TPS locomotion?
Foot sliding occurs when animation clip speed doesn't match actual movement speed. Solutions include: (1) use motion-warping to stretch/compress animations to match velocity, (2) blend between walk and run animations using the actual movement speed as the blend parameter, and (3) use foot IK to plant feet during stride. All three together eliminate virtually all foot sliding.
Should TPS melee interrupt reload animations?
This is a design decision, not an animation limitation. Technically, a melee input can interrupt any animation by raising the upper body blend weight to 1.0 on the melee layer. Whether to allow this is a game balance question. Most military TPS games allow it (melee cancels reload for risk/reward) while casual/arcade TPS games often don't interrupt reload to prevent accidental melee inputs.
Getting Started with Professional TPS Animation Assets
Building a complete TPS animation library from scratch is a significant undertaking. Professional motion capture packs give you production-quality animations compatible with industry-standard skeletons (UE5 Mannequin, Unity Humanoid, BIP) that you can integrate directly into your character animation system.
Browse the rifle animation packs for weapon handling, reload, and aim sequences. For combat and close-quarters melee, the pistol shooter collection includes draw, holster, aim, reload, and fire animations purpose-built for third-person shooter gameplay.
Third-Person Shooter Animation Packs
Building a third-person shooter requires extensive animation sets for locomotion, aiming, and combat. MoCap Online offers professionally captured rifle, pistol, and tactical movement animations recorded with optical motion capture equipment. These packs include aim offsets, reload sequences, and directional movement cycles optimized for real-time game engines.
Browse Rifle & Combat Animations → | View the Rifle Animset Pro → | Try Free Animations
