Uncaught TypeError: THREE.GLTFLoader не является конструктором - PullRequest
0 голосов
/ 08 сентября 2018

Я новичок в ТРИ 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>

1 Ответ

0 голосов
/ 08 сентября 2018

GLTFLoader находится в отдельном файле ...

<script src="https://cdn.rawgit.com/mrdoob/three.js/master/examples/js/loaders/GLTFLoader.js"></script>
...