shadows-point-light.html 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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 - Shadows - Spot Light w/CameraHelper</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 {GUI} from 'three/addons/libs/lil-gui.module.min.js';
  38. function main() {
  39. const canvas = document.querySelector('#c');
  40. const renderer = new THREE.WebGLRenderer({canvas});
  41. renderer.shadowMap.enabled = true;
  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.receiveShadow = true;
  69. mesh.rotation.x = Math.PI * -.5;
  70. scene.add(mesh);
  71. }
  72. {
  73. const cubeSize = 4;
  74. const cubeGeo = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
  75. const cubeMat = new THREE.MeshPhongMaterial({color: '#8AC'});
  76. const mesh = new THREE.Mesh(cubeGeo, cubeMat);
  77. mesh.castShadow = true;
  78. mesh.receiveShadow = true;
  79. mesh.position.set(cubeSize + 1, cubeSize / 2, 0);
  80. scene.add(mesh);
  81. }
  82. {
  83. const cubeSize = 30;
  84. const cubeGeo = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
  85. const cubeMat = new THREE.MeshPhongMaterial({
  86. color: '#CCC',
  87. side: THREE.BackSide,
  88. });
  89. const mesh = new THREE.Mesh(cubeGeo, cubeMat);
  90. mesh.receiveShadow = true;
  91. mesh.position.set(0, cubeSize / 2 - 0.1, 0);
  92. scene.add(mesh);
  93. }
  94. {
  95. const sphereRadius = 3;
  96. const sphereWidthDivisions = 32;
  97. const sphereHeightDivisions = 16;
  98. const sphereGeo = new THREE.SphereGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);
  99. const sphereMat = new THREE.MeshPhongMaterial({color: '#CA8'});
  100. const mesh = new THREE.Mesh(sphereGeo, sphereMat);
  101. mesh.castShadow = true;
  102. mesh.receiveShadow = true;
  103. mesh.position.set(-sphereRadius - 1, sphereRadius + 2, 0);
  104. scene.add(mesh);
  105. }
  106. class ColorGUIHelper {
  107. constructor(object, prop) {
  108. this.object = object;
  109. this.prop = prop;
  110. }
  111. get value() {
  112. return `#${this.object[this.prop].getHexString()}`;
  113. }
  114. set value(hexString) {
  115. this.object[this.prop].set(hexString);
  116. }
  117. }
  118. function makeXYZGUI(gui, vector3, name, onChangeFn) {
  119. const folder = gui.addFolder(name);
  120. folder.add(vector3, 'x', -10, 10).onChange(onChangeFn);
  121. folder.add(vector3, 'y', 0, 10).onChange(onChangeFn);
  122. folder.add(vector3, 'z', -10, 10).onChange(onChangeFn);
  123. // folder.open();
  124. }
  125. {
  126. const color = 0xFFFFFF;
  127. const intensity = 1;
  128. const light = new THREE.PointLight(color, intensity);
  129. light.castShadow = true;
  130. light.position.set(0, 10, 0);
  131. scene.add(light);
  132. const helper = new THREE.PointLightHelper(light);
  133. scene.add(helper);
  134. function updateCamera() {
  135. }
  136. class MinMaxGUIHelper {
  137. constructor(obj, minProp, maxProp, minDif) {
  138. this.obj = obj;
  139. this.minProp = minProp;
  140. this.maxProp = maxProp;
  141. this.minDif = minDif;
  142. }
  143. get min() {
  144. return this.obj[this.minProp];
  145. }
  146. set min(v) {
  147. this.obj[this.minProp] = v;
  148. this.obj[this.maxProp] = Math.max(this.obj[this.maxProp], v + this.minDif);
  149. }
  150. get max() {
  151. return this.obj[this.maxProp];
  152. }
  153. set max(v) {
  154. this.obj[this.maxProp] = v;
  155. this.min = this.min; // this will call the min setter
  156. }
  157. }
  158. const gui = new GUI();
  159. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  160. gui.add(light, 'intensity', 0, 2, 0.01);
  161. gui.add(light, 'distance', 0, 40).onChange(updateCamera);
  162. {
  163. const folder = gui.addFolder('Shadow Camera');
  164. folder.open();
  165. const minMaxGUIHelper = new MinMaxGUIHelper(light.shadow.camera, 'near', 'far', 0.1);
  166. folder.add(minMaxGUIHelper, 'min', 0.1, 50, 0.1).name('near').onChange(updateCamera);
  167. folder.add(minMaxGUIHelper, 'max', 0.1, 50, 0.1).name('far').onChange(updateCamera);
  168. }
  169. makeXYZGUI(gui, light.position, 'position', updateCamera);
  170. }
  171. function resizeRendererToDisplaySize(renderer) {
  172. const canvas = renderer.domElement;
  173. const width = canvas.clientWidth;
  174. const height = canvas.clientHeight;
  175. const needResize = canvas.width !== width || canvas.height !== height;
  176. if (needResize) {
  177. renderer.setSize(width, height, false);
  178. }
  179. return needResize;
  180. }
  181. function render() {
  182. resizeRendererToDisplaySize(renderer);
  183. {
  184. const canvas = renderer.domElement;
  185. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  186. camera.updateProjectionMatrix();
  187. }
  188. renderer.render(scene, camera);
  189. requestAnimationFrame(render);
  190. }
  191. requestAnimationFrame(render);
  192. }
  193. main();
  194. </script>
  195. </html>