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

xrimageloading

概要

このイベントは、 xrweb によって検出画像の読み込みが始まると発生します。

imageloading.detail : { imageTargets: {name, type, metadata} }

プロパティ説明
name画像の名前です。
type'FLAT', 'CYLINDRICAL', 'CONICAL' のいずれか。
metadataユーザーのメタデータです。

const componentMap = {}

const addComponents = ({detail}) => {
detail.imageTargets.forEach(({name, type, metadata}) => {
// ...
})
}

this.el.sceneEl.addEventListener('xrimageloading', addComponents)