如果我使用A框架资产管理系统,则在渲染img
资产时遇到问题。示例故障和下面的代码。我以前在A-Frame资产管理系统上取得了成功,但我的旧项目仍在工作,但是由于某种原因,使用完全相同格式的新项目却没有。如果我将URL内联,则可以正常工作,因此资产本身也可以,但是通过管道输送到资产管理系统时,就没有那么多了。
https://asset-problem.glitch.me/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello, WebVR! • A-Frame</title>
<meta name="description" content="Hello, WebVR! • A-Frame">
<script src="https://aframe.io/releases/0.8.2/aframe.min.js"></script>
</head>
<a-scene>
<!--Assets-->
<assets>
<img id="sky" src="https://cdn.glitch.com/c96b441a-61dd-427b-86b9-ab2241e3eb22%2Ftwo_tone_sky.jpg?1538274492274">
<img id="bust" src="https://cdn.glitch.com/c96b441a-61dd-427b-86b9-ab2241e3eb22%2Fbust.jpg?1538276649814">
</assets>
<!--Sky-->
<a-sky src="#sky"></a-sky>
<!--Box-->
<a-box class="clickable" position="-2 0.5 -3" rotation="0 45 0" material="#ffccff" shadow></a-box>
<!--bust-->
<a-image src="bust" position=".5 2 -1.5" rotation="0 -25 0"></a-image>
<!--Plane-->
<a-plane position="0 0 -4" rotation="-90 0 0" width="10" height="10" color="#9999ff" shadow></a-plane>
</a-scene>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script src="https://button.glitch.me/button.js"></script>
</html>