const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000); const render = new THREE.WebGLRenderer(); render.setSize(window.innerWidth, window.innerHeight); document.body // loader.load( // resource URL '../models/organic/propan-2-ol.gltf', // called when the resource is loaded function ( gltf ) { scene.add( gltf.scene ); gltf.animations; // Array gltf.scene; // THREE.Group gltf.scenes; // Array gltf.cameras; // Array gltf.asset; // Object }, // called while loading is progressing function ( xhr ) { console.log( ( xhr.loaded / xhr.total * 100 ) + '% loaded' ); }, // called when loading has errors function ( error ) { console.log(error) console.log( 'An error happened' ); } );