不确定这是否是错误,但是使用logarithmicDepthBuffer渲染文本是有问题的。实际上,不会显示任何文本。
<a-scene logarithmicDepthBuffer="false">
<a-plane position='0 0 -2' color='blue'></a-plane>
<a-entity position='0 0 -2' text='value:helloWorld;align:center;height:2;width:6;color:black'
rotation = '0 0 0'
></a-entity>
<a-sky color="#ECECEC"></a-sky>
</a-scene>
JSFiddle在这里: https://jsfiddle.net/7aLh69gq/17/
您可以将logarithmicDepthBuffer设置从false切换为true,并查看其对文本的影响。向前或向后移动文本都无效。
有人知道如何使logarithmicDepthBuffer与a文本一起工作吗?