{
let camera,
renderer,
scene,
controls,
mixers=[],
clock = new THREE.Clock(),
mesh;
init();
function loadModels(){
const onProgress = ()=>{}
const onError = ()=>{}
const loader = new THREE.GLTFLoader();
const onLoad = (gltf,position) => {
const model = gltf.scene.children[0];
model.position.copy(position);
const animation = gltf.animations[0];
const mixer = new THREE.AnimationMixer(model);
mixers.push(mixer);
const action = mixer.clipAction(animation);
action.play()
scene.add(model)
}
const parrotPos = new THREE.Vector3(0,0,2.5);
loader.load('https://discoverthreejs.com/static/models/gltf/Parrot.glb',
gltf => onLoad(gltf,parrotPos),onProgress,onError)
const flamingoPos = new THREE.Vector3(2.5,0,5);
loader.load('https://discoverthreejs.com/static/models/gltf/Flamingo.glb',
gltf => onLoad(gltf,flamingoPos),onProgress,onError)
const storkPos = new THREE.Vector3(0,-2.5,0);
loader.load('https://discoverthreejs.com/static/models/gltf/Stork.glb',
gltf => onLoad(gltf,storkPos),onProgress,onError)
}
function createCamera() {
const fov = 45;
const aspect = width / 400;
const near = 0.1;
const far = 1000;
camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
camera.position.set(-1.5, 1.5, 13.5);
}
function createLights() {
const ambientLight = new THREE.HemisphereLight(0xddeeff, 0x202020, 9);
const mainLight = new THREE.DirectionalLight(0xffffff, 3.0);
scene.add(ambientLight);
mainLight.position.set(10, 10, 10);
scene.add(ambientLight, mainLight);
}
function createRenderer() {
renderer = new THREE.WebGLRenderer({
antialias: true
});
renderer.setSize(width, 400);
renderer.setPixelRatio(window.devicePixelRatio);
renderer.gammaFactor = 2.2;
renderer.gammaOutput = true;
renderer.physicallyCorrectLights = true;
}
function init() {
scene = new THREE.Scene();
scene.background = new THREE.Color('skyblue');
createCamera();
createLights();
createRenderer();
loadModels()
controls = new THREE.OrbitControls(camera, renderer.domElement);
invalidation.then(() => (controls.dispose(), renderer.dispose()));
}
renderer.setAnimationLoop(() => {
update();
render();
})
function render() {
renderer.render(scene, camera);
}
function update() {
const delta = clock.getDelta();
mixers.forEach(mixer => mixer.update(delta*viewof speed.value))
}
function onWindowResize() {
camera.aspect = width / 400;;
camera.updateProjectionMatrix();
renderer.setSize(width, 400)
}
window.addEventListener('resize', onWindowResize)
yield renderer.domElement;
}