xrimageloading
Description
Cet événement est émis par xrweb
lorsque le chargement de l'image détectée commence.
imageloading.detail : { imageTargets: {name, type, metadata} }
Propriété | Description |
---|---|
nom | Nom de l'image. |
type | Un des éléments suivants : 'FLAT' , 'CYLINDRIQUE' , 'CONIQUE' . |
métadonnées | Métadonnées de l'utilisateur. |
Exemple
const componentMap = {}
const addComponents = ({detail}) => {
detail.imageTargets.forEach(({name, type, metadata}) => {
// ...
})
}
this.el.sceneEl.addEventListener('xrimageloading', addComponents)