Fix a bug in the hit test logic.

This commit is contained in:
Trevor F. Smith 2017-09-25 13:53:14 -07:00
Родитель e4d81d69ef
Коммит 8551d91b04
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -100,7 +100,8 @@
if(anchorOffset === null){
this._messageEl.innerHTML = 'miss'
} else {
this._messageEl.innerHTML = 'hit: ' + ','.join(anchorOffset.anchor.coordinates.position)
const anchor = frame.getAnchor(anchorOffset.anchorUID)
this._messageEl.innerHTML = 'hit: ' + anchor.coordinates.position.join(', ')
// Save the XRAnchorOffset and the node so that we can update the node's position based off of the anchor
let anchorInfo = {