标签: 3d three.js aframe
我不理解aframe 0.8.0中的a-text原语的行为。
我有两个简单的案例:
直接在场景中的文本 - 按预期工作(fiddle)
<a-scene> <a-text value="some text" color="#000000" position="0 2 -1"></a-text> </a-scene>
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>
这是预期的行为吗?它为什么会这样?
答案 0 :(得分:1)
它的作用是这样的,因为a-sky只是a-sphere,其scale等于scale: '-1 1 1',它会翻转它。与其他子实体一起:)
a-sky
a-sphere
scale
scale: '-1 1 1'
它的目的是在内部表面上绘制球体的纹理