lights-spot-w-helper.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 - Lights - Spot w/Helper</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. <script type="module">
  24. import * as THREE from '../../build/three.module.js';
  25. import {OrbitControls} from '../../examples/jsm/controls/OrbitControls.js';
  26. import {GUI} from '../../examples/jsm/libs/lil-gui.module.min.js';
  27. function main() {
  28. const canvas = document.querySelector('#c');
  29. const renderer = new THREE.WebGLRenderer({canvas});
  30. const fov = 45;
  31. const aspect = 2; // the canvas default
  32. const near = 0.1;
  33. const far = 100;
  34. const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
  35. camera.position.set(0, 10, 20);
  36. const controls = new OrbitControls(camera, canvas);
  37. controls.target.set(0, 5, 0);
  38. controls.update();
  39. const scene = new THREE.Scene();
  40. scene.background = new THREE.Color('black');
  41. {
  42. const planeSize = 40;
  43. const loader = new THREE.TextureLoader();
  44. const texture = loader.load('resources/images/checker.png');
  45. texture.wrapS = THREE.RepeatWrapping;
  46. texture.wrapT = THREE.RepeatWrapping;
  47. texture.magFilter = THREE.NearestFilter;
  48. const repeats = planeSize / 2;
  49. texture.repeat.set(repeats, repeats);
  50. const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize);
  51. const planeMat = new THREE.MeshPhongMaterial({
  52. map: texture,
  53. side: THREE.DoubleSide,
  54. });
  55. const mesh = new THREE.Mesh(planeGeo, planeMat);
  56. mesh.rotation.x = Math.PI * -.5;
  57. scene.add(mesh);
  58. }
  59. {
  60. const cubeSize = 4;
  61. const cubeGeo = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
  62. const cubeMat = new THREE.MeshPhongMaterial({color: '#8AC'});
  63. const mesh = new THREE.Mesh(cubeGeo, cubeMat);
  64. mesh.position.set(cubeSize + 1, cubeSize / 2, 0);
  65. scene.add(mesh);
  66. }
  67. {
  68. const sphereRadius = 3;
  69. const sphereWidthDivisions = 32;
  70. const sphereHeightDivisions = 16;
  71. const sphereGeo = new THREE.SphereGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);
  72. const sphereMat = new THREE.MeshPhongMaterial({color: '#CA8'});
  73. const mesh = new THREE.Mesh(sphereGeo, sphereMat);
  74. mesh.position.set(-sphereRadius - 1, sphereRadius + 2, 0);
  75. scene.add(mesh);
  76. }
  77. class ColorGUIHelper {
  78. constructor(object, prop) {
  79. this.object = object;
  80. this.prop = prop;
  81. }
  82. get value() {
  83. return `#${this.object[this.prop].getHexString()}`;
  84. }
  85. set value(hexString) {
  86. this.object[this.prop].set(hexString);
  87. }
  88. }
  89. class DegRadHelper {
  90. constructor(obj, prop) {
  91. this.obj = obj;
  92. this.prop = prop;
  93. }
  94. get value() {
  95. return THREE.MathUtils.radToDeg(this.obj[this.prop]);
  96. }
  97. set value(v) {
  98. this.obj[this.prop] = THREE.MathUtils.degToRad(v);
  99. }
  100. }
  101. function makeXYZGUI(gui, vector3, name, onChangeFn) {
  102. const folder = gui.addFolder(name);
  103. folder.add(vector3, 'x', -10, 10).onChange(onChangeFn);
  104. folder.add(vector3, 'y', 0, 10).onChange(onChangeFn);
  105. folder.add(vector3, 'z', -10, 10).onChange(onChangeFn);
  106. folder.open();
  107. }
  108. {
  109. const color = 0xFFFFFF;
  110. const intensity = 1;
  111. const light = new THREE.SpotLight(color, intensity);
  112. light.position.set(0, 10, 0);
  113. light.target.position.set(-5, 0, 0);
  114. scene.add(light);
  115. scene.add(light.target);
  116. const helper = new THREE.SpotLightHelper(light);
  117. scene.add(helper);
  118. function updateLight() {
  119. light.target.updateMatrixWorld();
  120. helper.update();
  121. }
  122. updateLight();
  123. const gui = new GUI();
  124. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  125. gui.add(light, 'intensity', 0, 2, 0.01);
  126. gui.add(light, 'distance', 0, 40).onChange(updateLight);
  127. gui.add(new DegRadHelper(light, 'angle'), 'value', 0, 90).name('angle').onChange(updateLight);
  128. gui.add(light, 'penumbra', 0, 1, 0.01);
  129. makeXYZGUI(gui, light.position, 'position', updateLight);
  130. makeXYZGUI(gui, light.target.position, 'target', updateLight);
  131. }
  132. function resizeRendererToDisplaySize(renderer) {
  133. const canvas = renderer.domElement;
  134. const width = canvas.clientWidth;
  135. const height = canvas.clientHeight;
  136. const needResize = canvas.width !== width || canvas.height !== height;
  137. if (needResize) {
  138. renderer.setSize(width, height, false);
  139. }
  140. return needResize;
  141. }
  142. function render() {
  143. if (resizeRendererToDisplaySize(renderer)) {
  144. const canvas = renderer.domElement;
  145. camera.aspect = canvas.clientWidth / canvas.clientHeight;
  146. camera.updateProjectionMatrix();
  147. }
  148. renderer.render(scene, camera);
  149. requestAnimationFrame(render);
  150. }
  151. requestAnimationFrame(render);
  152. }
  153. main();
  154. </script>
  155. </html>