2
0

load-gltf-rotate-cars-fixed.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <!-- Licensed under a BSD license. See license.html for license -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
  7. <title>Three.js - Load .GLTF - Rotate Cars Fixed</title>
  8. <style>
  9. html, body {
  10. margin: 0;
  11. height: 100%;
  12. }
  13. #c {
  14. width: 100%;
  15. height: 100%;
  16. display: block;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <canvas id="c"></canvas>
  22. </body>
  23. <script type="module">
  24. import * as THREE from '../../build/three.module.js';
  25. import {OrbitControls} from '../../examples/jsm/controls/OrbitControls.js';
  26. import {GLTFLoader} from '../../examples/jsm/loaders/GLTFLoader.js';
  27. function main() {
  28. const canvas = document.querySelector('#c');
  29. const renderer = new THREE.WebGLRenderer({canvas});
  30. const fov = 45;
  31. const aspect = 2; // the canvas default
  32. const near = 0.1;
  33. const far = 100;
  34. const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
  35. camera.position.set(0, 10, 20);
  36. const controls = new OrbitControls(camera, canvas);
  37. controls.target.set(0, 5, 0);
  38. controls.update();
  39. const scene = new THREE.Scene();
  40. scene.background = new THREE.Color('black');
  41. {
  42. const planeSize = 40;
  43. const loader = new THREE.TextureLoader();
  44. const texture = loader.load('resources/images/checker.png');
  45. texture.wrapS = THREE.RepeatWrapping;
  46. texture.wrapT = THREE.RepeatWrapping;
  47. texture.magFilter = THREE.NearestFilter;
  48. const repeats = planeSize / 2;
  49. texture.repeat.set(repeats, repeats);
  50. const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize);
  51. const planeMat = new THREE.MeshPhongMaterial({
  52. map: texture,
  53. side: THREE.DoubleSide,
  54. });
  55. const mesh = new THREE.Mesh(planeGeo, planeMat);
  56. mesh.rotation.x = Math.PI * -.5;
  57. scene.add(mesh);
  58. }
  59. {
  60. const skyColor = 0xB1E1FF; // light blue
  61. const groundColor = 0xB97A20; // brownish orange
  62. const intensity = 1;
  63. const light = new THREE.HemisphereLight(skyColor, groundColor, intensity);
  64. scene.add(light);
  65. }
  66. {
  67. const color = 0xFFFFFF;
  68. const intensity = 1;
  69. const light = new THREE.DirectionalLight(color, intensity);
  70. light.position.set(5, 10, 2);
  71. scene.add(light);
  72. scene.add(light.target);
  73. }
  74. function frameArea(sizeToFitOnScreen, boxSize, boxCenter, camera) {
  75. const halfSizeToFitOnScreen = sizeToFitOnScreen * 0.5;
  76. const halfFovY = THREE.MathUtils.degToRad(camera.fov * .5);
  77. const distance = halfSizeToFitOnScreen / Math.tan(halfFovY);
  78. // compute a unit vector that points in the direction the camera is now
  79. // in the xz plane from the center of the box
  80. const direction = (new THREE.Vector3())
  81. .subVectors(camera.position, boxCenter)
  82. .multiply(new THREE.Vector3(1, 0, 1))
  83. .normalize();
  84. // move the camera to a position distance units way from the center
  85. // in whatever direction the camera was from the center already
  86. camera.position.copy(direction.multiplyScalar(distance).add(boxCenter));
  87. // pick some near and far values for the frustum that
  88. // will contain the box.
  89. camera.near = boxSize / 100;
  90. camera.far = boxSize * 100;
  91. camera.updateProjectionMatrix();
  92. // point the camera to look at the center of the box
  93. camera.lookAt(boxCenter.x, boxCenter.y, boxCenter.z);
  94. }
  95. const cars = [];
  96. {
  97. const gltfLoader = new GLTFLoader();
  98. gltfLoader.load('resources/models/cartoon_lowpoly_small_city_free_pack/scene.gltf', (gltf) => {
  99. const root = gltf.scene;
  100. scene.add(root);
  101. const loadedCars = root.getObjectByName('Cars');
  102. const fixes = [
  103. { prefix: 'Car_08', rot: [Math.PI * .5, 0, Math.PI * .5], },
  104. { prefix: 'CAR_03', rot: [0, Math.PI, 0], },
  105. { prefix: 'Car_04', rot: [0, Math.PI, 0], },
  106. ];
  107. root.updateMatrixWorld();
  108. for (const car of loadedCars.children.slice()) {
  109. const fix = fixes.find(fix => car.name.startsWith(fix.prefix));
  110. const obj = new THREE.Object3D();
  111. car.getWorldPosition(obj.position);
  112. car.position.set(0, 0, 0);
  113. car.rotation.set(...fix.rot);
  114. obj.add(car);
  115. scene.add(obj);
  116. cars.push(obj);
  117. }
  118. // compute the box that contains all the stuff
  119. // from root and below
  120. const box = new THREE.Box3().setFromObject(root);
  121. const boxSize = box.getSize(new THREE.Vector3()).length();
  122. const boxCenter = box.getCenter(new THREE.Vector3());
  123. // set the camera to frame the box
  124. frameArea(boxSize * 0.5, boxSize, boxCenter, camera);
  125. // update the Trackball controls to handle the new size
  126. controls.maxDistance = boxSize * 10;
  127. controls.target.copy(boxCenter);
  128. controls.update();
  129. });
  130. }
  131. function resizeRendererToDisplaySize(renderer) {
  132. const canvas = renderer.domElement;
  133. const width = canvas.clientWidth;
  134. const height = canvas.clientHeight;
  135. const needResize = canvas.width !== width || canvas.height !== height;
  136. if (needResize) {
  137. renderer.setSize(width, height, false);
  138. }
  139. return needResize;
  140. }
  141. function render(time) {
  142. time *= 0.001; // convert to seconds
  143. if (resizeRendererToDisplaySize(renderer)) {
  144. const canvas = renderer.domElement;
  145. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  146. camera.updateProjectionMatrix();
  147. }
  148. for (const car of cars) {
  149. car.rotation.y = time;
  150. }
  151. renderer.render(scene, camera);
  152. requestAnimationFrame(render);
  153. }
  154. requestAnimationFrame(render);
  155. }
  156. main();
  157. </script>
  158. </html>