Interface CameraTourPanelParams

interface CameraTourPanelParams {
    container?: HTMLElement;
    storageKey?: string;
    studio: Studio;
    visible?: boolean;
}

Properties

container?: HTMLElement

DOM container; defaults to document.body.

storageKey?: string

localStorage key for persisting drag position + closed state. Defaults to "xkt-ct-panel".

studio: Studio

Studio whose Scene the panel manages tours for. Doubles as the WeakMap key for CameraTourPanel.openFor idempotence — one panel per helper.

visible?: boolean

Show on construction (default true).