我想在相机中渲染一个文本叠加层,在相机场景中移动相机。
我的相机实体看起来像这样:
<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>
如何放置文本元素以使其成为相机视图的可见叠加层?
答案 0 :(得分:1)
稍微远离相机。
position="0 0 -1"