shadows-spot-light-with-shadow-radius.html 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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( { antialias: true, canvas } );
  41. renderer.useLegacyLights = false;
  42. renderer.shadowMap.enabled = true;
  43. renderer.shadowMap.type = THREE.PCFSoftShadowMap; // default THREE.PCFShadowMap
  44. const fov = 45;
  45. const aspect = 2; // the canvas default
  46. const near = 0.1;
  47. const far = 100;
  48. const camera = new THREE.PerspectiveCamera( fov, aspect, near, far );
  49. camera.position.set( 0, 10, 20 );
  50. const controls = new OrbitControls( camera, canvas );
  51. controls.target.set( 0, 5, 0 );
  52. controls.update();
  53. const scene = new THREE.Scene();
  54. scene.background = new THREE.Color( 'black' );
  55. {
  56. const planeSize = 40;
  57. const loader = new THREE.TextureLoader();
  58. const texture = loader.load( 'resources/images/checker.png' );
  59. texture.wrapS = THREE.RepeatWrapping;
  60. texture.wrapT = THREE.RepeatWrapping;
  61. texture.magFilter = THREE.NearestFilter;
  62. texture.colorSpace = THREE.SRGBColorSpace;
  63. const repeats = planeSize / 2;
  64. texture.repeat.set( repeats, repeats );
  65. const planeGeo = new THREE.PlaneGeometry( planeSize, planeSize );
  66. const planeMat = new THREE.MeshPhongMaterial( {
  67. map: texture,
  68. side: THREE.DoubleSide,
  69. } );
  70. const mesh = new THREE.Mesh( planeGeo, planeMat );
  71. mesh.receiveShadow = true;
  72. mesh.rotation.x = Math.PI * - .5;
  73. scene.add( mesh );
  74. }
  75. {
  76. const cubeSize = 4;
  77. const cubeGeo = new THREE.BoxGeometry( cubeSize, cubeSize, cubeSize );
  78. const cubeMat = new THREE.MeshPhongMaterial( { color: '#8AC' } );
  79. const mesh = new THREE.Mesh( cubeGeo, cubeMat );
  80. mesh.castShadow = true;
  81. mesh.receiveShadow = true;
  82. mesh.position.set( cubeSize + 1, cubeSize / 2, 0 );
  83. scene.add( mesh );
  84. }
  85. {
  86. const sphereRadius = 3;
  87. const sphereWidthDivisions = 32;
  88. const sphereHeightDivisions = 16;
  89. const sphereGeo = new THREE.SphereGeometry( sphereRadius, sphereWidthDivisions, sphereHeightDivisions );
  90. const sphereMat = new THREE.MeshPhongMaterial( { color: '#CA8' } );
  91. const mesh = new THREE.Mesh( sphereGeo, sphereMat );
  92. mesh.castShadow = true;
  93. mesh.receiveShadow = true;
  94. mesh.position.set( - sphereRadius - 1, sphereRadius + 2, 0 );
  95. scene.add( mesh );
  96. }
  97. class ColorGUIHelper {
  98. constructor( object, prop ) {
  99. this.object = object;
  100. this.prop = prop;
  101. }
  102. get value() {
  103. return `#${this.object[ this.prop ].getHexString()}`;
  104. }
  105. set value( hexString ) {
  106. this.object[ this.prop ].set( hexString );
  107. }
  108. }
  109. function makeXYZGUI( gui, vector3, name, onChangeFn ) {
  110. const folder = gui.addFolder( name );
  111. folder.add( vector3, 'x', - 10, 10 ).onChange( onChangeFn );
  112. folder.add( vector3, 'y', 0, 10 ).onChange( onChangeFn );
  113. folder.add( vector3, 'z', - 10, 10 ).onChange( onChangeFn );
  114. // folder.open();
  115. }
  116. {
  117. const color = 0xFFFFFF;
  118. const intensity = 100;
  119. const light = new THREE.SpotLight( color, intensity );
  120. light.castShadow = true;
  121. light.position.set( 0, 10, 0 );
  122. light.target.position.set( - 4, 0, - 4 );
  123. scene.add( light );
  124. scene.add( light.target );
  125. const cameraHelper = new THREE.CameraHelper( light.shadow.camera );
  126. scene.add( cameraHelper );
  127. function updateCamera() {
  128. // update the light target's matrixWorld because it's needed by the helper
  129. light.target.updateMatrixWorld();
  130. // update the light's shadow camera's projection matrix
  131. light.shadow.camera.updateProjectionMatrix();
  132. // and now update the camera helper we're using to show the light's shadow camera
  133. cameraHelper.update();
  134. }
  135. updateCamera();
  136. setTimeout( updateCamera );
  137. class MinMaxGUIHelper {
  138. constructor( obj, minProp, maxProp, minDif ) {
  139. this.obj = obj;
  140. this.minProp = minProp;
  141. this.maxProp = maxProp;
  142. this.minDif = minDif;
  143. }
  144. get min() {
  145. return this.obj[ this.minProp ];
  146. }
  147. set min( v ) {
  148. this.obj[ this.minProp ] = v;
  149. this.obj[ this.maxProp ] = Math.max( this.obj[ this.maxProp ], v + this.minDif );
  150. }
  151. get max() {
  152. return this.obj[ this.maxProp ];
  153. }
  154. set max( v ) {
  155. this.obj[ this.maxProp ] = v;
  156. this.min = this.min; // this will call the min setter
  157. }
  158. }
  159. class DegRadHelper {
  160. constructor( obj, prop ) {
  161. this.obj = obj;
  162. this.prop = prop;
  163. }
  164. get value() {
  165. return THREE.MathUtils.radToDeg( this.obj[ this.prop ] );
  166. }
  167. set value( v ) {
  168. this.obj[ this.prop ] = THREE.MathUtils.degToRad( v );
  169. }
  170. }
  171. const gui = new GUI();
  172. gui.addColor( new ColorGUIHelper( light, 'color' ), 'value' ).name( 'color' );
  173. gui.add( light, 'intensity', 0, 200 );
  174. gui.add( light, 'distance', 0, 40 ).onChange( updateCamera );
  175. gui.add( new DegRadHelper( light, 'angle' ), 'value', 0, 90 ).name( 'angle' ).onChange( updateCamera );
  176. gui.add( light, 'penumbra', 0, 1, 0.01 );
  177. gui.add( light.shadow, 'radius', 0, 50, 0.01 );
  178. {
  179. const folder = gui.addFolder( 'Shadow Camera' );
  180. folder.open();
  181. const minMaxGUIHelper = new MinMaxGUIHelper( light.shadow.camera, 'near', 'far', 0.1 );
  182. folder.add( minMaxGUIHelper, 'min', 0.1, 50, 0.1 ).name( 'near' ).onChange( updateCamera );
  183. folder.add( minMaxGUIHelper, 'max', 0.1, 50, 0.1 ).name( 'far' ).onChange( updateCamera );
  184. }
  185. makeXYZGUI( gui, light.position, 'position', updateCamera );
  186. makeXYZGUI( gui, light.target.position, 'target', updateCamera );
  187. }
  188. function resizeRendererToDisplaySize( renderer ) {
  189. const canvas = renderer.domElement;
  190. const width = canvas.clientWidth;
  191. const height = canvas.clientHeight;
  192. const needResize = canvas.width !== width || canvas.height !== height;
  193. if ( needResize ) {
  194. renderer.setSize( width, height, false );
  195. }
  196. return needResize;
  197. }
  198. function render() {
  199. resizeRendererToDisplaySize( renderer );
  200. {
  201. const canvas = renderer.domElement;
  202. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  203. camera.updateProjectionMatrix();
  204. }
  205. renderer.render( scene, camera );
  206. requestAnimationFrame( render );
  207. }
  208. requestAnimationFrame( render );
  209. }
  210. main();
  211. </script>
  212. </html>