Aframe 当被透明a球体覆盖时,a文本将消失

Aframe 当被透明a球体覆盖时,a文本将消失,aframe,Aframe,见下图。请原谅,如果这是我明显遗漏的东西-我是A-frame的新手,在任何地方都找不到关于这一点的任何东西 基本上,当我在文本实体前面经过一个半透明球体时,文本消失了。太奇怪了 这是我的密码: <a-scene> <a-entity camera look-controls> <a-entity id="wand" position="0 -4 -4"> <a-torus position="0 3.75 0" rad

见下图。请原谅,如果这是我明显遗漏的东西-我是A-frame的新手,在任何地方都找不到关于这一点的任何东西

基本上,当我在文本实体前面经过一个半透明球体时,文本消失了。太奇怪了

这是我的密码:

<a-scene>
    <a-entity camera look-controls>
      <a-entity id="wand" position="0 -4 -4">
        <a-torus position="0 3.75 0" radius="1.25" radius-tubular=".02" segments-tubular="50" color="#ff5555">
            <a-sphere scale="1.25 .2 1.25" rotation="0 90 90" material="side: double; color: #ffffff; transparent: true; opacity: 0.2"></a-sphere>
        </a-torus>
        <a-box position="0 0 0" height="5" depth=".1" width=".2" color="#ff5555"></a-box>
      </a-entity>
    </a-entity>
    <a-text value="HELLO" position="0 0 -4" geometry="primitive:plane"></a-text>
    <a-sky color="#87cefa"></a-sky>
</a-scene>
</body>


默认情况下,对象按添加到场景的顺序进行渲染。交换在HTML中定义的球体和文本的顺序