Once you have created your cinematic sequence, you may want to have it called and played during gameplay as part of a cutscene. For example, maybe the player walks into a room and you want to have the camera zoom in on an object. Or perhaps you want to trigger an ending cinematic after the player kills an enemy. By getting a reference to your Level Sequence, you can use Blueprint or C++ code to tell your sequence to start playing.
This tutorial includes creating a sample cinematic that turns on a light when the player enters a Trigger Box. When the cinematic finishes playing, the Sequencer will apply the changes to the light in the Level so it persists after the cinematic has finished playing. You can also allow the player to skip the cinematic while it is playing but still instruct Sequencer to turn and leave the light on after skipping the scene.

Steps
This tutorial uses a new Blueprint Third Person template project.
-
From the Place Actors panel in the Basic tab, drag a Box Trigger into the Level and resize and position as desired.
Click image for full size.
When the player enters our trigger, the cinematic starts playing through Blueprint.
-
From the Main Toolbar, click the Cinematics button then select Add Level Sequence and give your cinematic a name.
Click image for full size.
-
From the Place Actors panel in the Basic tab, drag a Point Light into the Level and place the light in the position shown below.
Click image for full size.
-
With the Point Light selected, in the Details panel, change the Intensity value to 0.0 and click the Keyframe button.
Click image for full size.
Click image for full size.
This will add the Point Light to Sequencer and keyframe its initial value at the start of the sequence.
-
In Sequencer, move the timeline to frame 150 and set the Intensity value of your light to 5000* and keyframe it.
Click image for full size.
Your Point Light will now start in the off position and get brighter as the Sequence plays out.
-
Click the Add Camera button, then move the Camera in the Level to a position near the Character and keyframe it.
Click image for full size.
-
Move the Timeline to frame 75, then in the Level, move the Camera to a new position overlooking the Character and the light and keyframe it.
Click image for full size.
-
Move the Timeline to frame 150, then in the Level, move the Camera to a position focused on the light and keyframe it.
Click image for full size.
Our cinematic now has a camera fly-through animation that will show the player where the light is in the Level.
-
Select the Trigger Box in the Level, then from the Main Toolbar, click the Blueprints button and select Open Level Blueprint.
Click image for full size.
-
Right-click inside the graph, then select the Add On Actor Begin Overlap for the Trigger Box.
Click image for full size.
-
Return to the Level and select your Level Sequence, then back inside the Level Blueprint, right-click and Create a Reference to your Level Sequence.
Click image for full size.
-
Drag off the Level Sequence reference and select Play (SequencePlayer).
Click image for full size.
-
Connect the OnActorBeginOverlap node to the Play node.
Click image for full size.
When entering the Trigger Box, the Play node will be executed and will play your Level Sequence.
You will notice if you play in the Editor that the sequence plays when entering the Trigger Box, however, it will only play once. If you want to play the sequence again, you will need to start the sequence over using the Set Playback Position node with the Playback Position set to 0 (or the start of the sequence) before telling the sequence to play.
-
In the Level Blueprint, drag off the Sequence Player node and use the Set Playback Position node.
Click image for full size.
-
Connect the Set Playback Position node between the OnActorBeginOverlap and Play nodes.
Click image for full size.
This will set the Level Sequence back to the beginning prior to playing it.
-
Inside Sequencer, right-click on the Intensity track, then under Properties set When Finished to Keep State.
Click image for full size.
Using the Keep State option enables our light Intensity setting to remain after the sequence has ended. This is useful for situations where you want effects or settings you make in Sequencer to remain after the Sequence has ended. For example, your cinematic opens a door and you want the door to remain open once the cinematic ends.
-
In the Level Blueprint, add an F keyboard event connected to a Branch (with condition Is Playing) that is connected to the Go to End and Stop node.
Click image for full size.
When pressing the F key, if the Level Sequence is currently playing, it will immediately jump to the end and stop playing. The Go to End and Stop node is useful for situations when you want to allow your player to skip your cinematic but continue with any changes that Sequencer would have applied if the Sequence continued playing.
For example, in our cinematic, Sequencer turns on a light in the Level. If the player skips the cutscene of the light being turned on, the light will still to be on after the cutscene is skipped. If use the Stop node to stop playing our cinematic, it would not complete the cinematic and would stop at whatever point in the cinematic is selected to stop (meaning the light would not be fully on or not on at all depending on stopping place).
-
Return to the Main Editor, then from the Main Toolbar, click the Play button to play in the Editor.
End Result
When you play in the Editor, you will notice that the light is not on by default. When entering the Trigger Box, the cinematic will start playing and the light will turn on and stay on when the cinematic completes. You can re-trigger the cinematic by entering the Trigger Box again, which will play the sequence from the beginning. You can also enter the Trigger Box and press the F key to skip the cinematic, which will result in the light automatically turning on.