1
我只是想創建一個使用A框架庫的可視化,其中用戶是「在一個立方體內」,並且在兩側嵌入了畫布圖像。我已經開始使用飛機準備現場了。這是我已經完成的。 http://codepen.io/LuoXiahong/pen/LRNJNbA框架建築場景「立方體內」
<a-scene>
<a-assets>
</a-assets>
<!-- Basic plane. -->
<a-plane color="#ff0000" height="2" width="2" position="0 0 0" rotation="-90 0 0"></a-plane>
<!-- Front-->
<a-plane color="#00ff00" height="2" width="2" position="0 1 -1" rotation="0 0 90"></a-plane>
<!--Back - does not display-->
<a-plane color="#0000ff" height="2" width="2" position="0 1 1" rotation="0 0 90"></a-plane>
<!-- Left-->
<a-plane color="#ffff00" height="2" width="2" position="-1 1 0" rotation="0 90 0"></a-plane>
<!-- Right-->
<a-plane color="#ff00ff" height="2" width="2" position="1 1 0" rotation="0 -90 0"></a-plane>
<!--Top plane - does not display -->
<a-plane color="#00ffff" height="2" width="2" position="0 2 0" rotation="-90 0 0"></a-plane>
</a-scene>
我有我的顯示立方體的頂部和背面的問題。有誰能幫我嗎?
可能是'side =「double」' – ngokevin
固定 - 謝謝。 –