Hi, I’m fairly new to verse, I was wondering if anyone had an example on how to start a cinematic sequence using verse? Thank you!
# A Verse-authored creative device that can be placed in a level
hello_world_device := class(creative_device):
# single cinematic sequence device
@editable CinematicDevice : cinematic_sequence_device = cinematic_sequence_device{}
OnBegin<override>()<suspends>: void =
CinematicDevice.Play()
cinematic_sequence_device documentation
make sure you have the cinematic sequence device placed in the level
and your verse device
with the verse object selected, go to the details panel and you should see
“CinematicDevice” with a drop down menu.
select the cinematic sequence device that is in the level
now when you start the match your cinematic sequence device should play whatever sequence you applied to it, at the beginning of the match.
1 Like