1
私は、ユーザーが「キューブの内側」で、側面にキャンバス画像が埋め込まれたA-フレームライブラリを使用して視覚化を作成したかっただけです。私は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
となることがあります。 –