Strata - v1.4.10
    Preparing search index...

    Interface DialogLine

    A single line of text in a dialogue sequence.

    interface DialogLine {
        autoAdvance?: boolean;
        autoAdvanceDelay?: number;
        choices?: DialogChoice[];
        emotion?: string;
        speaker?: string;
        speakerImage?: string;
        text: string;
        voiceClip?: string;
    }
    Index

    Properties

    autoAdvance?: boolean

    Whether to advance to the next line automatically.

    autoAdvanceDelay?: number

    Delay in milliseconds before auto-advancing.

    choices?: DialogChoice[]

    Array of interactive choices available after this line.

    emotion?: string

    Optional emotion tag for facial expression synchronization.

    speaker?: string

    Name of the character speaking.

    speakerImage?: string

    Path to an image representing the speaker.

    text: string

    The actual dialogue text to display.

    voiceClip?: string

    Path to an audio file for this dialogue line.