設定超時

我們可以設定一個超時,當達到時,場景將開始渲染,實體將開始初始化,無論是否所有資產都已載入。預設超時為 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>