Used to manage WebXR

用来管理WebXR

构造函数

属性

canvasOptions: {
    alpha: boolean;
    antialias: boolean;
    depth: boolean;
    framebufferScaleFactor: number;
    multiview: boolean;
    stencil: boolean;
} = ...

Default options for the XRWebGLLayer.

XRWebGLLayer 的默认选项。

glInstance: any

The WebGL instance.

WebGL 实例。

supported: boolean = false

Indicates whether WebXR is supported in the current environment.

表示当前环境是否支持 WebXR。

xr_Manager: WebXRSessionManager = ...

The singleton instance of the XR session manager.

XR 会话管理器的单例实例。

方法

  • 参数

    • sessionMode: string

      The session mode, e.g., "inline", "immersive-vr", "immersive-ar".

    • referenceSpaceType: string

      The reference space type, e.g., "viewer", "local", "local-floor", "unbounded".

    • cameraInfo: WebXRCameraInfo

      The WebXR camera settings.

    返回 Promise<WebXRSessionManager>

    A promise that resolves to the WebXRSessionManager.

    Enters the specified XR session mode and sets up the reference space and WebGL layer.

    进入指定的 XR 会话模式,并设置引用空间和 WebGL 层。

  • 参数

    • sessionMode: string

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

    返回 Promise<boolean>

    A promise that resolves to a boolean indicating whether the mode is supported.

    Checks if a specific XRSession mode is supported.

    检查是否支持特定的 XRSession 模式。