Cinematics and endings

Last edit 26 Jul 2026, 21:21History

Cinematics are blocking fullscreen slideshows. Author them in Studio → Cinematics (slides, timing, optional text).

Play one

ink
<cinematic-hotel-ending>

The slug is the cinematic uniqueId. Play pauses the chat until the slideshow finishes.

Force end the story

ink
<cinematic-bad-ending>
<endstory>

<endstory> marks the whole story complete immediately. It does not walk the remaining chapter list. Use this for branch endings where later chapters should not run.

If you just -> END the current chapter Ink without <endstory>, Sexter will try to advance to the next chapter in order (if one exists).

Custom transition card

Not a cinematic, but same neighborhood:

ink
~ ShowCustomTransition("Two weeks later", "Summer break")

Title card, then chat continues.

Practical pattern

ink
{
    - GetStoryFlag("love_route"):
        <cinematic-love-ending>
        <endstory>
    - else:
        <cinematic-alone-ending>
        <endstory>
}
Official Sexter creator documentation. Older Unity / SmGF folder-mod docs remain at docs.unzipped.games. Creator Corner is for community models and production workflows.