UserInterfaceSettings: {
    controls?: {
        cultureSwitch?: boolean;
        serialTourNoTimeScrub?: boolean;
    };
    icons?: {
        close?: string;
        down?: string;
        fullscreenEnter?: string;
        fullscreenLeave?: string;
        muted?: string;
        next?: string;
        pause?: string;
        play?: string;
        prev?: string;
        subtitles?: string;
        subtitlesOff?: string;
        unmuted?: string;
        up?: string;
        zoomIn?: string;
        zoomOut?: string;
    };
}

Custom interface settings

Type declaration

  • Optional controls?: {
        cultureSwitch?: boolean;
        serialTourNoTimeScrub?: boolean;
    }
    • Optional cultureSwitch?: boolean

      Show the culture switch button if there are multiple available languages

    • Optional serialTourNoTimeScrub?: boolean

      Serial tour timebar clicking other segment always goes to start of chapter

  • Optional icons?: {
        close?: string;
        down?: string;
        fullscreenEnter?: string;
        fullscreenLeave?: string;
        muted?: string;
        next?: string;
        pause?: string;
        play?: string;
        prev?: string;
        subtitles?: string;
        subtitlesOff?: string;
        unmuted?: string;
        up?: string;
        zoomIn?: string;
        zoomOut?: string;
    }
    • Optional close?: string

      The raw SVG string for close

    • Optional down?: string

      Arrow down icon

    • Optional fullscreenEnter?: string

      The raw SVG string for fullscreen-start

    • Optional fullscreenLeave?: string

      The raw SVG string for fullscreen-stop

    • Optional muted?: string

      Muted icon

    • Optional next?: string

      Next step button

    • Optional pause?: string

      Pause button

    • Optional play?: string

      Play button

    • Optional prev?: string

      Previous step button

    • Optional subtitles?: string

      Subtitles icon

    • Optional subtitlesOff?: string

      Subtitles turned off icon

    • Optional unmuted?: string

      Unmuted icon

    • Optional up?: string

      Arrow up icon

    • Optional zoomIn?: string

      The raw SVG string for zoom-in

    • Optional zoomOut?: string

      The raw SVG string for zoom-out