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

PlayCanvas イメージ・ターゲット イベント

画像ターゲットイベントは、this.app.on(event, handler, this)としてリッスンすることができます。

xr:imageloading: 検出画像の読み込みが開始したときに発火します。

xr:imageloading : { imageTargets: {name, type, metadata} }

xr:imagescanning: すべての検出画像が読み込まれ、スキャンが開始したときに発火します。

xr:imagescanning : { imageTargets: {name, type, metadata, geometry} }

xr:imagefound: イメージ・ターゲットが最初に見つかったときに発火します。

xr:imagefound : { name, type, position, rotation, scale, scaledWidth, scaledHeight, height, radiusTop, radiusBottom, arcStartRadians, arcLengthRadians }

xr:imageupdated: イメージ・ターゲットの位置、回転、スケールが変化したときに発火します。

xr:imageupdated : { name, type, position, rotation, scale, scaledWidth, scaledHeight, height, radiusTop, radiusBottom, arcStartRadians, arcLengthRadians }

xr:imagelost: イメージ・ターゲットが追跡されなくなったときに発火します。

xr:imagelost : { name, type, position, rotation, scale, scaledWidth, scaledHeight, height, radiusTop, radiusBottom, arcStartRadians, arcLengthRadians }

const showImage = (detail) => {
if (name != detail.name) { return }
const {rotation, position, scale} = detail
entity.setRotation(rotation.x, rotation.y, rotation.z, rotation.w)
entity.setPosition(position.x, position.y, position.z)
entity.setLocalScale(scale, scale, scale)
entity.enabled = true
}

const hideImage = (detail) => {
if (name != detail.name) { return }
entity.enabled = false
}

this.app.on('xr:imagefound', showImage, {})
this.app.on('xr:imageupdated', showImage, {})
this.app.on('xr:imagelost', hideImage, {})