Options
All
  • Public
  • Public/Protected
  • All
Menu

Motion controller manager is managing the different webxr profiles and makes sure the right controller is being loaded.

Hierarchy

  • WebXRMotionControllerManager

Index

Constructors

Properties

BaseRepositoryUrl: string

The base URL of the online controller repository. Can be changed at any time.

DisableControllerCache: boolean

Disable the controller cache and load the models each time a new WebXRProfileMotionController is loaded. Defaults to true.

PrioritizeOnlineRepository: boolean

Which repository gets priority - local or online

UseOnlineRepository: boolean

Use the online repository, or use only locally-defined controllers

Methods

  • ClearControllerCache(): void
  • Clear the controller's cache (usually happens at the end of a session)

    Returns void

  • ClearProfilesCache(): void
  • Clear the cache used for profile loading and reload when requested again

    Returns void

  • DefaultFallbacks(): void
  • Register the default fallbacks. This function is called automatically when this file is imported.

    Returns void

  • FindFallbackWithProfileId(profileId: string): string[]
  • Find a fallback profile if the profile was not found. There are a few predefined generic profiles.

    Parameters

    • profileId: string

      the profile to which a fallback needs to be found

    Returns string[]

    an array with corresponding fallback profiles

  • When acquiring a new xrInput object (usually by the WebXRInput class), match it with the correct profile. The order of search:

    1. Iterate the profiles array of the xr input and try finding a corresponding motion controller
    2. (If not found) search in the gamepad id and try using it (legacy versions only)
    3. search for registered fallbacks (should be redundant, nonetheless it makes sense to check)
    4. return the generic trigger controller if none were found

    Parameters

    • xrInput: XRInputSource

      the xrInput to which a new controller is initialized

    • scene: Scene

      the scene to which the model will be added

    • Optional forceProfile: string

      force a certain profile for this controller

    Returns Promise<WebXRAbstractMotionController>

    A promise that fulfils with the motion controller class for this profile id or the generic standard class if none was found

  • Register a new controller based on its profile. This function will be called by the controller classes themselves.

    If you are missing a profile, make sure it is imported in your source, otherwise it will not register.

    Parameters

    • type: string

      the profile type to register

    • constructFunction: MotionControllerConstructor

      the function to be called when loading this profile

    Returns void

  • RegisterFallbacksForProfileId(profileId: string, fallbacks: string[]): void
  • Register a fallback to a specific profile.

    Parameters

    • profileId: string

      the profileId that will receive the fallbacks

    • fallbacks: string[]

      A list of fallback profiles

    Returns void

  • UpdateProfilesList(): Promise<{}>
  • Will update the list of profiles available in the repository

    Returns Promise<{}>

    a promise that resolves to a map of profiles available online

Legend

  • Constructor
  • Property
  • Method
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme