Я новичок в ТРИ js. Не могу понять ошибку
, когда я запускаю свой код, следующая ошибка показывает
Uncaught TypeError: THREE.GLTFLoader isне конструктор
var loader = new THREE.GLTFLoader();
loader.load('modelReq/Gully_update_2.gltf',
function (gltf) {
scene.add(gltf.scene);
gltf.animations;
gltf.scene;
gltf.scenes;
gltf.cameras;
gltf.asset;
},
function (xhr) {
console.log((xhr.loaded / xhr.total * 100 ) + '% loaded' );
},
function (error) {
console.log( 'An error happened = ', error );
}
);
и ошибка в var loader = new THREE.GLTFLoader();
Мой HTML-файл:
<link rel="stylesheet" href="css/main.css">
<script src="js/plugins/three.min.js"></script>
<script src="js/plugins/TrackballControls.js"></script>
<script src="js/plugins/stats.min.js"></script>
<script src="js/plugins/GLTFLoader.js"></script>
<script src="js/custom.js"></script>
</head>
<body>
<div id="animate">
<canvas></canvas>
</div>
и GLTFLoader.js находится в пути: <script src="js/plugins/GLTFLoader.js"></script>