设置超时

我们可以设置一个超时,当达到时,场景将开始渲染,实体将开始初始化,无论是否所有资产都已加载。默认超时为 3 秒。要设置不同的超时,我们只需将毫秒数传递给 timeout 属性:

如果某些资产需要很长时间才能加载,我们可能需要设置一个适当的超时,以便用户不会整天等待网络运行缓慢。

<a-scene>
  <a-assets timeout="10000">
    <!-- You got until the count of 10 to load else the show will go on without you. -->
    <img src="bigimage.png">
  </a-asset>
</a-scene>