我希望在我的Aframe应用程序中获取相机的位置,但它始终为0,尽管我移动相机。
我尝试了一个事件监听器和定期检索位置,但没有获得更新的值。
这是场景:
<a-scene>
<a-entity id="cameraWrapper" position="0 2 10" rotation="0 0 0">
<a-camera near="0.1" user-height="0" id="camera"></a-camera>
</a-entity>
<a-plane position="0 4 4" rotation="-90 0 -90" width="4" height="4" color="#7BC8A4"></a-plane>
<a-sky color="#ECECEC"></a-sky>
</a-scene>
以下是用于监控摄像机位置的javascript代码:
<script>
window.onload = function () {
var pos =
document.querySelector('#camera').getAttribute('position');
document.querySelector('[camera]').addEventListener('componentchanged', function (evt) {
console.log('CAMERA x/y:', pos.x, pos.y);
if (evt.name === 'position') {
console.log('Entity has moved from POSITION', evt.oldData, 'to', evt.newData, '!');
return;
}
return;
});
};
</script>
但条件 if(evt.name ===&#39; position&#39;)永远不会出现,并且相机位置保持为0,即使使用键盘在相机位置移动时也是如此投入。如何连续拍摄相机位置?
答案 0 :(得分:5)
我认为evt.detail.name === 'position'
。
我还建议使用A-Frame组件而不是松散的JavaScript:
AFRAME.registerComponent('listener', {
tick: function () {
console.log(this.el.getAttribute('position'));
}
});
HTML:
<a-camera listener></a-camera>