load-obj-materials-fixed.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 .OBJ and .MTL file - 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. <!-- 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 { OBJLoader } from 'three/addons/loaders/OBJLoader.js';
  38. import { MTLLoader } from 'three/addons/loaders/MTLLoader.js';
  39. function main() {
  40. const canvas = document.querySelector( '#c' );
  41. const renderer = new THREE.WebGLRenderer( { antialias: true, canvas } );
  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.colorSpace = THREE.SRGBColorSpace;
  58. texture.wrapS = THREE.RepeatWrapping;
  59. texture.wrapT = THREE.RepeatWrapping;
  60. texture.magFilter = THREE.NearestFilter;
  61. const repeats = planeSize / 2;
  62. texture.repeat.set( repeats, repeats );
  63. const planeGeo = new THREE.PlaneGeometry( planeSize, planeSize );
  64. const planeMat = new THREE.MeshPhongMaterial( {
  65. map: texture,
  66. side: THREE.DoubleSide,
  67. } );
  68. const mesh = new THREE.Mesh( planeGeo, planeMat );
  69. mesh.rotation.x = Math.PI * - .5;
  70. scene.add( mesh );
  71. }
  72. {
  73. const skyColor = 0xB1E1FF; // light blue
  74. const groundColor = 0xB97A20; // brownish orange
  75. const intensity = 3;
  76. const light = new THREE.HemisphereLight( skyColor, groundColor, intensity );
  77. scene.add( light );
  78. }
  79. {
  80. const color = 0xFFFFFF;
  81. const intensity = 3;
  82. const light = new THREE.DirectionalLight( color, intensity );
  83. light.position.set( 5, 10, 2 );
  84. scene.add( light );
  85. scene.add( light.target );
  86. }
  87. {
  88. const mtlLoader = new MTLLoader();
  89. mtlLoader.load( 'resources/models/windmill/windmill-fixed.mtl', ( mtl ) => {
  90. mtl.preload();
  91. const objLoader = new OBJLoader();
  92. mtl.materials.Material.side = THREE.DoubleSide;
  93. objLoader.setMaterials( mtl );
  94. objLoader.load( 'resources/models/windmill/windmill.obj', ( root ) => {
  95. scene.add( root );
  96. } );
  97. } );
  98. }
  99. function resizeRendererToDisplaySize( renderer ) {
  100. const canvas = renderer.domElement;
  101. const width = canvas.clientWidth;
  102. const height = canvas.clientHeight;
  103. const needResize = canvas.width !== width || canvas.height !== height;
  104. if ( needResize ) {
  105. renderer.setSize( width, height, false );
  106. }
  107. return needResize;
  108. }
  109. function render() {
  110. if ( resizeRendererToDisplaySize( renderer ) ) {
  111. const canvas = renderer.domElement;
  112. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  113. camera.updateProjectionMatrix();
  114. }
  115. renderer.render( scene, camera );
  116. requestAnimationFrame( render );
  117. }
  118. requestAnimationFrame( render );
  119. }
  120. main();
  121. </script>
  122. </html>