<a-scene environment="preset: forest">
<a-assets>
<a-asset-item id="duck" src="./assets/duck.glb"></a-asset-item>
</a-assets>
<a-entity gltf-model="#duck" position="-4 -4 -4"></a-entity>
<a-entity
camera
position="-1.946 2.807 -3.552"
wasd-controls
look-controls
>
</a-entity>
</a-scene>
!error message!
core:propertyTypes:warn "#duck" asset not found.
http://localhost:8080/assets/duck.glb 404 (Not Found)
aframe-master.js?ce54:2199 core:a-assets:warn Asset loading timed out in 3000 ms
我正在尝试将
a-frame
与 Vue
连接,但我无法从 asset
获取文件。我不断收到该错误,但我根本无法解决它。我不习惯a-frame
,所以我需要帮助。请帮助我。
还有一个问题是,我设置了
environment="preset: forest"
属性,但是当我打开服务器时,环境属性不起作用。这有什么问题吗?
默认情况下,资源加载时间设置为 3 秒。为相当大的资产设置自定义超时为我解决了这个问题。
<a-assets timeout="10000">
<a-asset-item id="duck" src="./assets/duck.glb"></a-asset-item>
</a-assets>