Manages an XRSession to work with the LayaAir engine.

管理 XRSession 用以与 LayaAir 引擎协同工作。

层级 (查看层级一览)

属性

baseReferenceSpace: any

The base reference space for the XR session.

XR 会话的基参考空间。

currentFrame: any

The current XR frame in the session.

会话中的当前 XR 帧。

currentTimestamp: number = -1

The WebXR timestamp updated every frame.

每帧更新的 WebXR 时间戳。

defaultHeightCompensation: number = 1.7

The default height compensation used when initialization fails.

初始化失败后使用的高度补偿默认值。

session: any

The underlying XR session being managed.

被管理的底层 XR 会话。

viewerReferenceSpace: any

The XRReferenceSpace used for setting up the viewer's reference space.

用于设置观察者参考空间的 XRReferenceSpace。

EVENT_FRAME_LOOP: string = "xrFrameLoop"
EVENT_MANAGER_END: string = "xrManagerDestory"

访问器

方法

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • xrSessionMode: string = 'immersive-vr'

      The mode for the XR session.

    • xrSessionInit: {} = {}

      The initialization info for the XR session.

    返回 Promise<any>

    A promise that resolves with the XR session if successful.

    Initializes the XR session with the specified mode and initialization info.

    使用指定的模式和初始化信息初始化 XR 会话。

  • 参数

    • xrSession: any

      The XR session to initialize.

    • gl: WebGLRenderingContext

      The WebGL rendering context.

    返回 Promise<boolean>

    A promise that resolves to true if the XR layer is successfully initialized.

    Initializes the XR layer for the session.

    为会话初始化 XR 层。

  • 参数

    • sessionMode: string

      The session mode to check, "inline", "immersive-vr", or "immersive-ar".

    返回 Promise<boolean>

    A promise that resolves to true if the session mode is supported, and false if not.

    Checks if the session mode is supported by the browser.

    检查会话模式是否得到浏览器支持。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 返回 void

    Starts the rendering loop for the XR session and binds it to the session's animation frame request.

    启动 XR 会话的渲染循环,并将其绑定到会话的动画帧请求。

  • 参数

    • referenceSpaceType: string = "local-floor"

      The type of space to set, defaults to "local-floor".

    返回 Promise<any>

    A promise that resolves once the reference space has been set.

    Sets the reference space on the XR session.

    在 XR 会话上设置参考空间。

  • 参数

    • state: any

      The new render state to be applied.

    返回 any

    A promise that resolves once the render state has been updated.

    Updates the render state of the WebXR session.

    更新 WebXR 会话的渲染状态。

  • 参数

    • rate: number

      The new frame rate to be set, must be within the supportedFrameRates range.

    返回 Promise<void>

    A promise that resolves once the frame rate has been set.

    Sets the frame rate for the WebXR session.

    为 WebXR 会话设置帧率。