unreal-camera-cinematics

Design and debug gameplay cameras and Sequencer cinematics in Unreal Engine 5.8.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Building cameras in Unreal Engine involves many competing systems—Camera Components, Spring Arms, PlayerCameraManager, the Experimental Gameplay Camera System, and Sequencer—and without a clear ownership model they fight over the final point of view, causing jitter, clipping, and broken cinematic handoffs. ## Core Features & Use Cases - Architecture Selection: Choose between Camera Component + Spring Arm, PlayerCameraManager, the Experimental Gameplay Camera System, or Cine Camera Actor + Sequencer based on the camera's gameplay job. - Gameplay Camera Tuning: Configure follow/orbit, aim, and lock-on cameras with collision, lag, FOV, modifiers, and camera shakes in a stable ordered stack. - Cinematic Authoring: Build shots with Cine Camera Actors, Camera Cut Tracks, Camera Rig Rail/Crane, lens and focus controls, and explicit gameplay-to-cinematic handoff rules. - Use Case: A third-person camera clips through walls and jitters after network corrections. Use this Skill to diagnose the Spring Arm collision channel and probe size, reset accumulated lag on teleport, and verify the fix at multiple frame rates. ## Quick Start Use the unreal-camera-cinematics skill to design a third-person follow camera with collision, aim state blending, and a Sequencer intro cutscene that returns control to gameplay.

Frequently Asked Questions about unreal-camera-cinematics

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

FAQPage Schema
How do I set up a third-person follow camera in Unreal Engine 5?▼

Attach a Camera Component to a Spring Arm on the Pawn, derive the pivot from a stable target socket, clamp pitch, then solve collision before adding bounded lag. Tune pivot, offsets, and arm length with lag and shake disabled first.

Should I use the Gameplay Camera System or PlayerCameraManager in UE 5.8?▼

The Gameplay Camera System is Experimental in UE 5.8, so use it only after an explicit production-maturity decision and keep a traditional Camera Component/PlayerCameraManager fallback. Simple or low-risk requirements should use the traditional system.

Why does my Unreal camera clip through walls?▼

Camera clipping usually comes from Spring Arm collision settings. Verify Do Collision Test is enabled, the ProbeChannel blocks intended geometry, and the probe size fits tight spaces, and use SocketOffset rather than a relative Camera offset so tracing includes final framing.

How do I blend between gameplay camera and a Sequencer cinematic?▼

Use a Camera Cut Track bound to Cine Camera Actors for the cinematic, and capture the local PlayerController's view state before playback. On finish, skip, or interruption, restore or blend to the current valid gameplay view target and clear cinematic-only modifiers and shakes.

Do camera shakes replicate in Unreal multiplayer?▼

World camera shakes do not replicate automatically; they affect nearby local players only. Replicate the gameplay event itself and trigger the shake locally on each relevant client, capping stacked amplitude and honoring the player's shake-intensity setting including zero.

Why does my camera jitter after network corrections or teleports?▼

Large target discontinuities feed into accumulated camera lag, producing persistent jitter. Reset or bound camera lag history and stale targets on teleport, possession, respawn, or network correction, and check for multiple systems writing the same final POV.