DEV Community

Dinesh
Dinesh

Posted on

What Beginners Get Wrong About Unreal Engine Sequencer

I moved the camera in Sequencer. Nothing happened during playback. The problem was simple — I forgot the keyframes.

This post is part of my daily learning journey in game development.

I’m sharing what I learn each day — the basics, the confusion, and the real progress — from the perspective of a beginner.

On Day 81 of my game development journey, I explored Level Sequencer in Unreal Engine.


What I Tried

I wanted to create a small cinematic shot. So I added a camera and opened Level Sequencer. I moved the camera to a new position and pressed play.

Nothing moved.

Then I realized Sequencer didn’t record the change because I hadn’t added keyframes.

Once I started placing keyframes on the timeline, the camera and actors finally began moving.


What Confused Me

Why did nothing happen when I moved the camera?

Why do we need keyframes for movement?

Why aren’t actors animated automatically?

What makes Sequencer different from gameplay animation?


What Finally Clicked

Sequencer works like a timeline-based animation system. It records changes between keyframes.

If there are no keyframes, the engine has no information about how something should move.

So the animation system needs at least two points:

Keyframe A → starting position

Keyframe B → ending position

Sequencer automatically interpolates motion between those points.

It’s similar to animation timelines used in filmmaking or video editing software.


Practical Fix

  • Create a Level Sequence asset
  • Add cameras or actors to the Sequencer
  • Move the timeline to a frame
  • Adjust the actor transform
  • Add a keyframe
  • Move forward in time and add another keyframe

Now Sequencer can animate the object between those frames.


One Lesson for Beginners

  • Sequencer needs keyframes to animate anything
  • Motion happens automatically between keyframes
  • Cameras work best with Cine Camera Actor
  • Lights and materials can also be animated
  • Preview playback helps check timing

Level Sequencer brings filmmaking tools directly into Unreal Engine.

It’s the system used to build cutscenes, trailers, and cinematic gameplay moments.


Slow progress — but I’m building a strong foundation.

If you’re also learning game development, what was the first thing that confused you when you started?

See you in the next post 🎮🚀

Top comments (0)