gltf モデルがロードされているA-Frame Schoolからコードを取得しました。次に、Khronos、このボックスからサンプルモデルをロードしてロードしようとしましたが、このエラーが発生しました(数回)
GLTFLoader.js:979 Uncaught (in promise) TypeError: Cannot read property 'slice' of undefined
at GLTFLoader.js:979
at i (GLTFLoader.js:570)
at GLTFLoader.js:975
at <anonymous>
.obj モデルをロードして、いくつかのバージョンのモデルを試してみましたが、常にエラーが発生します。
サンプル コードはローカルで動作します。つまり、モデルを正しくロードし、aframe cdn から取得します。
完成のコードはこちら
<!DOCTYPE html>
<html>
<head>
<title>glTF Model</title>
<meta name="description" content="glTF Model">
<script src="https://rawgit.com/aframevr/aframe/b395ea0/dist/aframe-master.min.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<a-asset-item id="boxModel" src="Box.gltf"></a-asset-item>
</a-assets>
<a-gltf-model src="#boxModel"></a-gltf-model>
</a-scene>
</body>
</html>