Skip to content

Next

Overview

Next is a simple step to allow one or more actions to take place. It is one of the primary building blocks used for writing visual novels in Ktvn.

Use

Next can be used for narration.

next { narrator narrates "Although Michel has remained amicable, the witch, Morgana, has not." }

Or a character may speak.

next { morgana says "The two of us are cursed to spend eternity in this mansion." }

Or a character may think.

next { morgana thinks "I could never tell Michel I don't actually think he is a fool." }

Characters can show emotions.

next { michel looks concerned }

Characters can be animated.

next { michel begins shaking }

Change position of a character on the screen.

next { layout moveRight morgana }

Play a sound effect.

next { audio sfx sfxFromResource("crash") }