メインコンテンツへスキップ

xrhandloading

概要

このイベントは xrhand によって、追加のハンドARリソースのロードが開始されたときに発生します。

xrhandloading.detail : {maxDetections, pointsPerDetection, rightIndices, leftIndices}

プロパティ説明
maxDetections同時に処理できるハンド(手)の最大数。
pointsPerDetectionハンド(手)ごとに抽出される頂点の数。
rightIndices: [{a, b, c}]ハンドメッシュの三角形を形成する頂点配列へのインデックス。
leftIndices: [{a, b, c}]ハンドメッシュの三角形を形成する頂点配列へのインデックス。

const initMesh = ({detail}) => {
const {pointsPerDetection} = detail
this.el.object3D.add(generateMeshGeometry({pointsPerDetection}))
}
this.el.sceneEl.addEventListener('xrhandloading', initMesh)