XRJointSpace: jointName 属性

只读 **jointName** 属性是 XRJointSpace 接口的属性,包含它跟踪的关节的名称。

一个字符串,指示关节的名称。请参阅 XRHand 页面上的手关节列表。

示例

获取 jointName

给定一个 XRJointSpacejointName 属性将包含手关节名称。

js
navigator.xr
  .requestSession({ optionalFeatures: ["hand-tracking"] })
  .then(/** … */);

function renderFrame(session, frame) {
  // …

  for (const inputSource of session.inputSources) {
    if (inputSource.hand) {
      const indexFingerTipJoint = inputSource.hand.get("index-finger-tip"); // XRJointSpace
      indexFingerTipJoint.jointName; // "index-finger-tip"
    }
  }
}

规范

规范
WebXR 手部输入模块 - 级别 1
# dom-xrjointspace-jointname

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅