如何在Aframe中将文本附加到相机?

时间:2017-11-03 18:59:57

标签: javascript aframe webvr

我想在相机中渲染一个文本叠加层,在相机场景中移动相机。

我的相机实体看起来像这样:

<a-entity position="33 0 -33" rotation="0 180 0" 
  look-controls id="camera" camera="userHeight: 1.6" listener>
</a-entity>

我的文字实体如下:

<a-entity text="value: HELLO; color: red; width: 2;" position="0 0 0">
</a-entity>

但是当我将文本实体放在相机实体中时,文本不可见:

<a-entity position="33 0 -33" rotation="0 180 0" look-controls 
  id="camera" camera="userHeight: 1.6" listener>
  <a-entity text="value: HELLO; color: red; width: 2;" position="0 0 0" >
  </a-entity>
</a-entity>

如何放置文本元素以使其成为相机视图的可见叠加层?

1 个答案:

答案 0 :(得分:1)

稍微远离相机。

position="0 0 -1"