混合模型的示例用法
我們可以通過使用 ID 指向指定 src 到檔案的 ID 來載入模型:
<a-scene>
<a-assets>
<!-- At first we load skeletal animation blending JSON as asset -->
<a-asset-item id="hand" src="/path/to/hand.json"></a-asset-item>
</a-assets>
<!-- Now we can use that asset with blend-model-->
<a-entity blend-model="#hand"></a-entity>
</a-scene>