Verse Library verse

01 Fragment

Handles button input to instantly start a cinematic sequence and lock player camera control.

verse-library/making-cinematics-and-cutscenes-in-unreal-editor-for-fortnite/01-fragment.verse

# This is a simple concept script
# It shows how a device listens for a signal

# When the player presses the button
OnPlayerPressesButton():
    # Tell the cinematic device to play
    PlayCinematic()
    
    # This stops the player from controlling the camera
    LockPlayerCamera()

Comments

    Sign in to vote, comment, or suggest an edit. Sign in