shadows-directional-light-with-camera-gui.html 7.1 KB

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