frontend
    Preparing search index...

    Interface TutorialStep

    Defines a single step in a game tutorial sequence.

    interface TutorialStep {
        advanceOn: TutorialAdvanceOn;
        messageKey: string;
        onEnter?: () => void;
        placement: TutorialPlacement;
        target: string;
    }
    Index

    Properties

    How to advance: 'click' watches the target, 'next' shows a next button.

    messageKey: string

    i18n key for the tooltip message text.

    onEnter?: () => void

    Optional callback executed when this step becomes active.

    Tooltip placement relative to the target element.

    target: string

    CSS selector or data-tutorial attribute value to highlight.