load-gltf-dump-scenegraph-extra.html 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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</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. <!-- Import maps polyfill -->
  24. <!-- Remove this when import maps will be widely supported -->
  25. <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
  26. <script type="importmap">
  27. {
  28. "imports": {
  29. "three": "../../build/three.module.js",
  30. "three/addons/": "../../examples/jsm/"
  31. }
  32. }
  33. </script>
  34. <script type="module">
  35. import * as THREE from 'three';
  36. import {OrbitControls} from 'three/addons/controls/OrbitControls.js';
  37. import {GLTFLoader} from 'three/addons/loaders/GLTFLoader.js';
  38. function main() {
  39. const canvas = document.querySelector('#c');
  40. const renderer = new THREE.WebGLRenderer({antialias: true, canvas});
  41. renderer.outputColorSpace = THREE.SRGBColorSpace;
  42. const fov = 45;
  43. const aspect = 2; // the canvas default
  44. const near = 0.1;
  45. const far = 100;
  46. const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
  47. camera.position.set(0, 10, 20);
  48. const controls = new OrbitControls(camera, canvas);
  49. controls.target.set(0, 5, 0);
  50. controls.update();
  51. const scene = new THREE.Scene();
  52. scene.background = new THREE.Color('black');
  53. {
  54. const planeSize = 40;
  55. const loader = new THREE.TextureLoader();
  56. const texture = loader.load('resources/images/checker.png');
  57. texture.wrapS = THREE.RepeatWrapping;
  58. texture.wrapT = THREE.RepeatWrapping;
  59. texture.magFilter = THREE.NearestFilter;
  60. const repeats = planeSize / 2;
  61. texture.repeat.set(repeats, repeats);
  62. const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize);
  63. const planeMat = new THREE.MeshPhongMaterial({
  64. map: texture,
  65. side: THREE.DoubleSide,
  66. });
  67. const mesh = new THREE.Mesh(planeGeo, planeMat);
  68. mesh.rotation.x = Math.PI * -.5;
  69. scene.add(mesh);
  70. }
  71. {
  72. const skyColor = 0xB1E1FF; // light blue
  73. const groundColor = 0xB97A20; // brownish orange
  74. const intensity = 0.6;
  75. const light = new THREE.HemisphereLight(skyColor, groundColor, intensity);
  76. scene.add(light);
  77. }
  78. {
  79. const color = 0xFFFFFF;
  80. const intensity = 0.8;
  81. const light = new THREE.DirectionalLight(color, intensity);
  82. light.position.set(5, 10, 2);
  83. scene.add(light);
  84. scene.add(light.target);
  85. }
  86. function frameArea(sizeToFitOnScreen, boxSize, boxCenter, camera) {
  87. const halfSizeToFitOnScreen = sizeToFitOnScreen * 0.5;
  88. const halfFovY = THREE.MathUtils.degToRad(camera.fov * .5);
  89. const distance = halfSizeToFitOnScreen / Math.tan(halfFovY);
  90. // compute a unit vector that points in the direction the camera is now
  91. // in the xz plane from the center of the box
  92. const direction = (new THREE.Vector3())
  93. .subVectors(camera.position, boxCenter)
  94. .multiply(new THREE.Vector3(1, 0, 1))
  95. .normalize();
  96. // move the camera to a position distance units way from the center
  97. // in whatever direction the camera was from the center already
  98. camera.position.copy(direction.multiplyScalar(distance).add(boxCenter));
  99. // pick some near and far values for the frustum that
  100. // will contain the box.
  101. camera.near = boxSize / 100;
  102. camera.far = boxSize * 100;
  103. camera.updateProjectionMatrix();
  104. // point the camera to look at the center of the box
  105. camera.lookAt(boxCenter.x, boxCenter.y, boxCenter.z);
  106. }
  107. function dumpVec3(v3, precision = 3) {
  108. return `${v3.x.toFixed(precision)}, ${v3.y.toFixed(precision)}, ${v3.z.toFixed(precision)}`;
  109. }
  110. function dumpObject(obj, lines = [], isLast = true, prefix = '') {
  111. const localPrefix = isLast ? '└─' : '├─';
  112. lines.push(`${prefix}${prefix ? localPrefix : ''}${obj.name || '*no-name*'} [${obj.type}]`);
  113. const dataPrefix = obj.children.length
  114. ? (isLast ? ' │ ' : '│ │ ')
  115. : (isLast ? ' ' : '│ ');
  116. lines.push(`${prefix}${dataPrefix} pos: ${dumpVec3(obj.position)}`);
  117. lines.push(`${prefix}${dataPrefix} rot: ${dumpVec3(obj.rotation)}`);
  118. lines.push(`${prefix}${dataPrefix} scl: ${dumpVec3(obj.scale)}`);
  119. const newPrefix = prefix + (isLast ? ' ' : '│ ');
  120. const lastNdx = obj.children.length - 1;
  121. obj.children.forEach((child, ndx) => {
  122. const isLast = ndx === lastNdx;
  123. dumpObject(child, lines, isLast, newPrefix);
  124. });
  125. return lines;
  126. }
  127. {
  128. const gltfLoader = new GLTFLoader();
  129. gltfLoader.load('resources/models/cartoon_lowpoly_small_city_free_pack/scene.gltf', (gltf) => {
  130. const root = gltf.scene;
  131. scene.add(root);
  132. console.log(dumpObject(root).join('\n')); // eslint-disable-line
  133. // compute the box that contains all the stuff
  134. // from root and below
  135. const box = new THREE.Box3().setFromObject(root);
  136. const boxSize = box.getSize(new THREE.Vector3()).length();
  137. const boxCenter = box.getCenter(new THREE.Vector3());
  138. // set the camera to frame the box
  139. frameArea(boxSize * 0.5, boxSize, boxCenter, camera);
  140. // update the Trackball controls to handle the new size
  141. controls.maxDistance = boxSize * 10;
  142. controls.target.copy(boxCenter);
  143. controls.update();
  144. });
  145. }
  146. function resizeRendererToDisplaySize(renderer) {
  147. const canvas = renderer.domElement;
  148. const width = canvas.clientWidth;
  149. const height = canvas.clientHeight;
  150. const needResize = canvas.width !== width || canvas.height !== height;
  151. if (needResize) {
  152. renderer.setSize(width, height, false);
  153. }
  154. return needResize;
  155. }
  156. function render() {
  157. if (resizeRendererToDisplaySize(renderer)) {
  158. const canvas = renderer.domElement;
  159. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  160. camera.updateProjectionMatrix();
  161. }
  162. renderer.render(scene, camera);
  163. requestAnimationFrame(render);
  164. }
  165. requestAnimationFrame(render);
  166. }
  167. main();
  168. </script>
  169. </html>