我试图在A-Frame页面中包含像GLTF对象这样的STL文件,但我没有取得进展。我不明白为什么文件不能以类似的方式工作。这是我的Glitch工作页面的代码,带有GLTF文件和带有STL文件的非工作文件。所有目标文件都托管在GitHub上。
glitch.com/edit /#!/戏剧性-黄蜂
(以下是从Glitch复制的非工作代码摘录)
<a-scene>
<a-assets>
<a-asset-item id="object" src="https://github.com/rschildge/models/raw/master/NinjaSpinner.stl"></a-asset-item>
</a-assets>
<a-entity model="#object" position="0 0 -4" scale=".1 .1 .1"></a-entity>
<!-- <a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9" shadow></a-box>-->
<a-plane position="0 0 -4" rotation="-90 0 0" width="4" height="4" color="#7BC8A4" shadow></a-plane>
<a-sky color="#ECECEC"></a-sky>
</a-scene>