You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Event: Fired when attempting to go the the next/previous point of interest, but none exists
* Fired on `StoryPointsControls` and `PathPointsControls`. `controls.addEventListener('ExitPOIs', ...)`
* */
export interface ExitPOIsEvent {
type: 'ExitPOIs'
exitFrom: 'start' | 'end'
}
/**
* Event: Fired when transitioning between points of interest. Fired on `StoryPointsControls` and `PathPointsControls`. `controls.addEventListener('update', ...)`