令人困惑的面对a-sky基元内的文本

时间:2018-05-14 17:56:40

标签: 3d three.js aframe

我不理解aframe 0.8.0中的a-text原语的行为。

我有两个简单的案例:

  1. 直接在场景中的文本 - 按预期工作(fiddle

    <a-scene> <a-text value="some text" color="#000000" position="0 2 -1"></a-text> </a-scene>

  2. a-sky内的文字 - 文字看起来像围绕y轴旋转180度,背面可见(fiddle

    <a-scene> <a-sky radius="10"> <a-text value="some text" color="#000000" position="0 2 -1"></a-text> </a-sky> </a-scene>

  3. 这是预期的行为吗?它为什么会这样?

1 个答案:

答案 0 :(得分:1)

它的作用是这样的,因为a-sky只是a-sphere,其scale等于scale: '-1 1 1',它会翻转它。与其他子实体一起:)

它的目的是在内部表面上绘制球体的纹理

<小时/> 查看docs,它在那里有相当的描述。