lights.html 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. <!DOCTYPE html><html lang="ja"><head>
  2. <meta charset="utf-8">
  3. <title>のライト</title>
  4. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  5. <meta name="twitter:card" content="summary_large_image">
  6. <meta name="twitter:site" content="@threejs">
  7. <meta name="twitter:title" content="Three.js – のライト">
  8. <meta property="og:image" content="https://threejs.org/files/share.png">
  9. <link rel="shortcut icon" href="../../files/favicon_white.ico" media="(prefers-color-scheme: dark)">
  10. <link rel="shortcut icon" href="../../files/favicon.ico" media="(prefers-color-scheme: light)">
  11. <link rel="stylesheet" href="../resources/lesson.css">
  12. <link rel="stylesheet" href="../resources/lang.css">
  13. <!-- Import maps polyfill -->
  14. <!-- Remove this when import maps will be widely supported -->
  15. <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
  16. <script type="importmap">
  17. {
  18. "imports": {
  19. "three": "../../build/three.module.js"
  20. }
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <div class="container">
  26. <div class="lesson-title">
  27. <h1>のライト</h1>
  28. </div>
  29. <div class="lesson">
  30. <div class="lesson-main">
  31. <p>この記事はThree.jsの連載記事の1つです。
  32. 最初の記事は<a href="fundamentals.html">Three.jsの基礎知識</a>です。
  33. まだ読んでいない場合は、Three.jsの基礎知識や<a href="setup.html">セットアップ</a>から始めると良いと思います。
  34. 前回の記事は<a href="textures.html">テクスチャ</a>でした。</p>
  35. <p>今回はthree.jsの色々な種類のライトの使い方を確認していきます。</p>
  36. <p>前回のサンプルコードからカメラの設定を修正しましょう。
  37. 視野角(fov)を45度にし、遠平面(far)を100、カメラを原点からY座標に10、Z座標を20にします。</p>
  38. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">*const fov = 45;
  39. const aspect = 2; // the canvas default
  40. const near = 0.1;
  41. *const far = 100;
  42. const camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
  43. +camera.position.set(0, 10, 20);
  44. </pre>
  45. <p>次に <a href="/docs/#examples/controls/OrbitControls"><code class="notranslate" translate="no">OrbitControls</code></a> を追加します。
  46. <a href="/docs/#examples/controls/OrbitControls"><code class="notranslate" translate="no">OrbitControls</code></a> は、カメラをある点を中心に<em>軌道</em>を回転できます。
  47. <a href="/docs/#examples/controls/OrbitControls"><code class="notranslate" translate="no">OrbitControls</code></a> はthree.jsのオプション機能なので、importする必要があります。</p>
  48. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">import * as THREE from 'three';
  49. +import {OrbitControls} from 'three/addons/controls/OrbitControls.js';
  50. </pre>
  51. <p>これでOrbitControlsを利用できます。
  52. <a href="/docs/#examples/controls/OrbitControls"><code class="notranslate" translate="no">OrbitControls</code></a> にカメラと入力イベントを取得するDOM要素を渡します。</p>
  53. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const controls = new OrbitControls(camera, canvas);
  54. controls.target.set(0, 5, 0);
  55. controls.update();
  56. </pre>
  57. <p>controls.targetのY座標を5にして <code class="notranslate" translate="no">controls.update</code> を呼び出します。</p>
  58. <p>次はライトアップするオブジェクトを作ってみましょう。
  59. まずは地上となる平面を作ります。
  60. この平面に2 x 2ピクセルの小さなチェッカーボードのテクスチャを適用します。</p>
  61. <div class="threejs_center">
  62. <img src="../examples/resources/images/checker.png" class="border" style="
  63. image-rendering: pixelated;
  64. width: 128px;
  65. ">
  66. </div>
  67. <p>最初にテクスチャを読み込み、何回テクスチャのリピートを繰り返すかを設定し、フィルターはニアレスト(nearest)にします。
  68. テクスチャは2 x 2ピクセルのチェッカーボードです。
  69. テクスチャのリピートは平面の半分の大きさにし、チェッカーボードの1つのチェック部分は1にします。</p>
  70. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const planeSize = 40;
  71. const loader = new THREE.TextureLoader();
  72. const texture = loader.load('resources/images/checker.png');
  73. texture.wrapS = THREE.RepeatWrapping;
  74. texture.wrapT = THREE.RepeatWrapping;
  75. texture.magFilter = THREE.NearestFilter;
  76. texture.colorSpace = THREE.SRGBColorSpace;
  77. const repeats = planeSize / 2;
  78. texture.repeat.set(repeats, repeats);
  79. </pre>
  80. <p>平面のジオメトリとマテリアルを作り、それを元にシーンに追加するメッシュを作ります。
  81. 平面のデフォルトは縦向きなので横向きになるように回転します。</p>
  82. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize);
  83. const planeMat = new THREE.MeshPhongMaterial({
  84. map: texture,
  85. side: THREE.DoubleSide,
  86. });
  87. const mesh = new THREE.Mesh(planeGeo, planeMat);
  88. mesh.rotation.x = Math.PI * -.5;
  89. scene.add(mesh);
  90. </pre>
  91. <p>キューブと球体を追加し、平面を含めて3つのオブジェクトをライティングします。</p>
  92. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">{
  93. const cubeSize = 4;
  94. const cubeGeo = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
  95. const cubeMat = new THREE.MeshPhongMaterial({color: '#8AC'});
  96. const mesh = new THREE.Mesh(cubeGeo, cubeMat);
  97. mesh.position.set(cubeSize + 1, cubeSize / 2, 0);
  98. scene.add(mesh);
  99. }
  100. {
  101. const sphereRadius = 3;
  102. const sphereWidthDivisions = 32;
  103. const sphereHeightDivisions = 16;
  104. const sphereGeo = new THREE.SphereGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);
  105. const sphereMat = new THREE.MeshPhongMaterial({color: '#CA8'});
  106. const mesh = new THREE.Mesh(sphereGeo, sphereMat);
  107. mesh.position.set(-sphereRadius - 1, sphereRadius + 2, 0);
  108. scene.add(mesh);
  109. }
  110. </pre>
  111. <p>ライトアップするシーンができたのでライトを追加しましょう!</p>
  112. <h2 id="-ambientlight-"><code class="notranslate" translate="no">AmbientLight(環境光源)</code></h2>
  113. <p>最初に <a href="/docs/#api/ja/lights/AmbientLight"><code class="notranslate" translate="no">AmbientLight</code></a> を作りましょう。</p>
  114. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const color = 0xFFFFFF;
  115. const intensity = 1;
  116. const light = new THREE.AmbientLight(color, intensity);
  117. scene.add(light);
  118. </pre>
  119. <p>ライトのパラメーターを調整できるようにします。
  120. 今回も<a href="https://github.com/georgealways/lil-gui">lil-gui</a>を使います。
  121. lil-guiで色を調整するにはヘルパーが必要です。
  122. プロパティをlil-guiにCSSの16進数の形で表示します(例: <code class="notranslate" translate="no">#FF8844</code>)。
  123. ヘルパーは名前付きプロパティから色を取得し、16進数の文字列に変換してlil-guiに渡します。lil-guiがヘルパーのプロパティを設定し、結果をライトの色に戻します。</p>
  124. <p>これがヘルパーです。</p>
  125. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">class ColorGUIHelper {
  126. constructor(object, prop) {
  127. this.object = object;
  128. this.prop = prop;
  129. }
  130. get value() {
  131. return `#${this.object[this.prop].getHexString()}`;
  132. }
  133. set value(hexString) {
  134. this.object[this.prop].set(hexString);
  135. }
  136. }
  137. </pre>
  138. <p>lil-guiの設定は以下の通りです。</p>
  139. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const gui = new GUI();
  140. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  141. gui.add(light, 'intensity', 0, 2, 0.01);
  142. </pre>
  143. <p>これで以下のような結果になります。</p>
  144. <p></p><div translate="no" class="threejs_example_container notranslate">
  145. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/lights-ambient.html"></iframe></div>
  146. <a class="threejs_center" href="/manual/examples/lights-ambient.html" target="_blank">ここをクリックして別のウィンドウで開きます</a>
  147. </div>
  148. <p></p>
  149. <p>シーンをクリックしてドラッグして、カメラを<em>軌道</em>に乗せます。</p>
  150. <p>環境光源だけでは正しくライティング表現できてません。キューブと球体に陰影がなく形状が平面に見えます。
  151. 以下のように <a href="/docs/#api/ja/lights/AmbientLight"><code class="notranslate" translate="no">AmbientLight</code></a> はマテリアルの色とライトの色、ライトの強度(intensity)を掛けてます。</p>
  152. <pre class="prettyprint showlinemods notranslate notranslate" translate="no">color = materialColor * light.color * light.intensity;
  153. </pre><p>それだけで方向性がないです。
  154. この環境光源は100%均一でシーン内の全ての色を変える以外は<em>ライティング</em>としてはあまり役に立ちません。
  155. 環境光源は暗すぎない暗さを作る事ができます。</p>
  156. <h2 id="-hemispherelight-"><code class="notranslate" translate="no">HemisphereLight(半球光源)</code></h2>
  157. <p>コードを <a href="/docs/#api/ja/lights/HemisphereLight"><code class="notranslate" translate="no">HemisphereLight</code></a> に切り替えてみましょう。
  158. <a href="/docs/#api/ja/lights/HemisphereLight"><code class="notranslate" translate="no">HemisphereLight</code></a> は空と地面の色を取得し、その2色とマテリアルの色を掛け合わせます。</p>
  159. <p>これが新しいコードです。</p>
  160. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">-const color = 0xFFFFFF;
  161. +const skyColor = 0xB1E1FF; // light blue
  162. +const groundColor = 0xB97A20; // brownish orange
  163. const intensity = 1;
  164. -const light = new THREE.AmbientLight(color, intensity);
  165. +const light = new THREE.HemisphereLight(skyColor, groundColor, intensity);
  166. scene.add(light);
  167. </pre>
  168. <p>lil-guiのコードを修正し、両方の色を編集してみましょう。</p>
  169. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const gui = new GUI();
  170. -gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  171. +gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('skyColor');
  172. +gui.addColor(new ColorGUIHelper(light, 'groundColor'), 'value').name('groundColor');
  173. gui.add(light, 'intensity', 0, 2, 0.01);
  174. </pre>
  175. <p>これが結果です。</p>
  176. <p></p><div translate="no" class="threejs_example_container notranslate">
  177. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/lights-hemisphere.html"></iframe></div>
  178. <a class="threejs_center" href="/manual/examples/lights-hemisphere.html" target="_blank">ここをクリックして別のウィンドウで開きます</a>
  179. </div>
  180. <p></p>
  181. <p>まだ正しくライティング表現ができてなく、キューブと球体が平面に見えます。
  182. 別のライトと組み合わせて使用される <a href="/docs/#api/ja/lights/HemisphereLight"><code class="notranslate" translate="no">HemisphereLight</code></a> は、空や地面の色に良い影響を与えます。
  183. この方法では他のライトと組み合わせて使うか、<a href="/docs/#api/ja/lights/HemisphereLight"><code class="notranslate" translate="no">HemisphereLight</code></a> を代わりに使うのがベストです。</p>
  184. <h2 id="-directionallight-"><code class="notranslate" translate="no">DirectionalLight(平行光源)</code></h2>
  185. <p>コードを <a href="/docs/#api/ja/lights/DirectionalLight"><code class="notranslate" translate="no">DirectionalLight</code></a> に切り替えてみましょう。
  186. <a href="/docs/#api/ja/lights/DirectionalLight"><code class="notranslate" translate="no">DirectionalLight</code></a> は太陽を表すのによく使われます。</p>
  187. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const color = 0xFFFFFF;
  188. const intensity = 1;
  189. const light = new THREE.DirectionalLight(color, intensity);
  190. light.position.set(0, 10, 0);
  191. light.target.position.set(-5, 0, 0);
  192. scene.add(light);
  193. scene.add(light.target);
  194. </pre>
  195. <p>シーンに <code class="notranslate" translate="no">light</code> と <code class="notranslate" translate="no">light.target</code> を追加する必要があります。
  196. three.jsの <a href="/docs/#api/ja/lights/DirectionalLight"><code class="notranslate" translate="no">DirectionalLight</code></a> はターゲットの方向にライティングします。</p>
  197. <p>GUIに追加してlight.targetを動かせるようにしてみましょう。</p>
  198. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const gui = new GUI();
  199. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  200. gui.add(light, 'intensity', 0, 2, 0.01);
  201. gui.add(light.target.position, 'x', -10, 10);
  202. gui.add(light.target.position, 'z', -10, 10);
  203. gui.add(light.target.position, 'y', 0, 10);
  204. </pre>
  205. <p></p><div translate="no" class="threejs_example_container notranslate">
  206. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/lights-directional.html"></iframe></div>
  207. <a class="threejs_center" href="/manual/examples/lights-directional.html" target="_blank">ここをクリックして別のウィンドウで開きます</a>
  208. </div>
  209. <p></p>
  210. <p>なんだか見づらいですね。
  211. Three.jsにはシーンに追加できるヘルパーオブジェクトがたくさんあり、シーンの見えない部分を視覚化するのに役立ちます。
  212. 今回は <a href="/docs/#api/ja/helpers/DirectionalLightHelper"><code class="notranslate" translate="no">DirectionalLightHelper</code></a> を使い、ライトから平面までの線を描画します。
  213. lightをDirectionalLightHelperに渡してシーンに追加します。</p>
  214. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const helper = new THREE.DirectionalLightHelper(light);
  215. scene.add(helper);
  216. </pre>
  217. <p>ライトの位置とターゲットの両方を設定できるようにしておきましょう。
  218. <a href="/docs/#api/ja/math/Vector3"><code class="notranslate" translate="no">Vector3</code></a> が与えられた時に <code class="notranslate" translate="no">lil-gui</code> を使い <code class="notranslate" translate="no">x</code>, <code class="notranslate" translate="no">y</code>, <code class="notranslate" translate="no">z</code> プロパティを調整できる関数を作ります。</p>
  219. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">function makeXYZGUI(gui, vector3, name, onChangeFn) {
  220. const folder = gui.addFolder(name);
  221. folder.add(vector3, 'x', -10, 10).onChange(onChangeFn);
  222. folder.add(vector3, 'y', 0, 10).onChange(onChangeFn);
  223. folder.add(vector3, 'z', -10, 10).onChange(onChangeFn);
  224. folder.open();
  225. }
  226. </pre>
  227. <p>変更時は常にヘルパーの <code class="notranslate" translate="no">update</code> 関数を呼び出す必要があります。
  228. そのため、lil-guiが値を更新時に <code class="notranslate" translate="no">onChangeFn</code> 関数を渡しています。</p>
  229. <p>makeXYZGUI関数はlight.positionとlight.target.positionの両方に使えます。</p>
  230. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">+function updateLight() {
  231. + light.target.updateMatrixWorld();
  232. + helper.update();
  233. +}
  234. +updateLight();
  235. const gui = new GUI();
  236. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  237. gui.add(light, 'intensity', 0, 2, 0.01);
  238. +makeXYZGUI(gui, light.position, 'position', updateLight);
  239. +makeXYZGUI(gui, light.target.position, 'target', updateLight);
  240. </pre>
  241. <p>これでライトを動かす事ができるようになりました。</p>
  242. <p></p><div translate="no" class="threejs_example_container notranslate">
  243. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/lights-directional-w-helper.html"></iframe></div>
  244. <a class="threejs_center" href="/manual/examples/lights-directional-w-helper.html" target="_blank">ここをクリックして別のウィンドウで開きます</a>
  245. </div>
  246. <p></p>
  247. <p>カメラを軌道に乗せると見やすくなります。
  248. この平面は <a href="/docs/#api/ja/lights/DirectionalLight"><code class="notranslate" translate="no">DirectionalLight</code></a> を表しており、DirectionalLightが一方向からのライティングを計算します。
  249. 光の出所は<em>点</em>ではなく、平面を無限に照らす平行光線です。</p>
  250. <h2 id="-pointlight-"><code class="notranslate" translate="no">PointLight(点光源)</code></h2>
  251. <p><a href="/docs/#api/ja/lights/PointLight"><code class="notranslate" translate="no">PointLight</code></a> はある点から全方向に光を放つライトです。
  252. コード変更しましょう。</p>
  253. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const color = 0xFFFFFF;
  254. -const intensity = 1;
  255. +const intensity = 150;
  256. -const light = new THREE.DirectionalLight(color, intensity);
  257. +const light = new THREE.PointLight(color, intensity);
  258. light.position.set(0, 10, 0);
  259. -light.target.position.set(-5, 0, 0);
  260. scene.add(light);
  261. -scene.add(light.target);
  262. </pre>
  263. <p><a href="/docs/#api/ja/helpers/PointLightHelper"><code class="notranslate" translate="no">PointLightHelper</code></a> に切り替えます。</p>
  264. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">-const helper = new THREE.DirectionalLightHelper(light);
  265. +const helper = new THREE.PointLightHelper(light);
  266. scene.add(helper);
  267. </pre>
  268. <p>light.targetがないので <code class="notranslate" translate="no">onChange</code> 関数はもっとシンプルになります。</p>
  269. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">function updateLight() {
  270. - light.target.updateMatrixWorld();
  271. helper.update();
  272. }
  273. -updateLight();
  274. </pre>
  275. <p><a href="/docs/#api/ja/helpers/PointLightHelper"><code class="notranslate" translate="no">PointLightHelper</code></a> には点がない事に注意して下さい。
  276. 小さなダイヤモンドのワイヤーフレームを描画します。
  277. 簡単に望む任意の形状にできて、ライト自体にメッシュを追加します。</p>
  278. <p><a href="/docs/#api/ja/lights/PointLight"><code class="notranslate" translate="no">PointLight</code></a> は <a href="/docs/#api/ja/lights/PointLight#distance"><code class="notranslate" translate="no">distance</code></a>プロパティを持ちます。
  279. <code class="notranslate" translate="no">distance</code> が0ならば <a href="/docs/#api/ja/lights/PointLight"><code class="notranslate" translate="no">PointLight</code></a> は無限大に輝きます。
  280. <code class="notranslate" translate="no">distance</code> が0よりも大きい場合、ライトに向かってライトの全強度を照らし、ライトから離れた <code class="notranslate" translate="no">distance</code> では影響を受けないようにフェードアウトします。</p>
  281. <p>distanceを調整できるようにGUIを設定してみましょう。</p>
  282. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const gui = new GUI();
  283. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  284. gui.add(light, 'intensity', 0, 2, 0.01);
  285. +gui.add(light, 'distance', 0, 40).onChange(updateLight);
  286. makeXYZGUI(gui, light.position, 'position', updateLight);
  287. -makeXYZGUI(gui, light.target.position, 'target', updateLight);
  288. </pre>
  289. <p>これを試してみて下さい。</p>
  290. <p></p><div translate="no" class="threejs_example_container notranslate">
  291. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/lights-point.html"></iframe></div>
  292. <a class="threejs_center" href="/manual/examples/lights-point.html" target="_blank">ここをクリックして別のウィンドウで開きます</a>
  293. </div>
  294. <p></p>
  295. <p><code class="notranslate" translate="no">distance</code> が &gt; 0 の時にライトがフェードアウトしている事に注目して下さい。</p>
  296. <h2 id="-spotlight-"><code class="notranslate" translate="no">SpotLight(集中光線)</code></h2>
  297. <p>集中光源は円錐体にライティングする時に効果的です。
  298. 実際は2つの円錐体があります。外側と内側の円錐体です。
  299. 内側と外側の円錐体の間では、ライトは強度のMAX値から0にフェードします。</p>
  300. <p><a href="/docs/#api/ja/lights/SpotLight"><code class="notranslate" translate="no">SpotLight</code></a> を使うには、平行光源と同じようにターゲットが必要です。
  301. ライトの円錐体がターゲットに向かって照らされます。</p>
  302. <p>上記のヘルパーを使って <a href="/docs/#api/ja/lights/DirectionalLight"><code class="notranslate" translate="no">DirectionalLight</code></a> を修正します。</p>
  303. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const color = 0xFFFFFF;
  304. -const intensity = 1;
  305. +const intensity = 150;
  306. -const light = new THREE.DirectionalLight(color, intensity);
  307. +const light = new THREE.SpotLight(color, intensity);
  308. scene.add(light);
  309. scene.add(light.target);
  310. -const helper = new THREE.DirectionalLightHelper(light);
  311. +const helper = new THREE.SpotLightHelper(light);
  312. scene.add(helper);
  313. </pre>
  314. <p>集中光源の円錐体の角度は <a href="/docs/#api/ja/lights/SpotLight#angle"><code class="notranslate" translate="no">angle</code></a>プロパティでラジアン単位で設定します。
  315. <a href="textures.html">テクスチャ記事</a>の <code class="notranslate" translate="no">DegRadHelper</code> を使い、度数でUIに表示します。</p>
  316. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">gui.add(new DegRadHelper(light, 'angle'), 'value', 0, 90).name('angle').onChange(updateLight);
  317. </pre>
  318. <p>内側の円錐は<a href="/docs/#api/ja/lights/SpotLight#penumbra"><code class="notranslate" translate="no">penumbra</code></a>プロパティを外側の円錐からの%として設定します。
  319. <code class="notranslate" translate="no">penumbra</code> が1の時、ライトは円錐の中心から外側の円錐に向かってフェードしていきます。
  320. <code class="notranslate" translate="no">penumbra</code> が5の時、ライトは外側の円錐体の中心から50%からフェードしていきます。</p>
  321. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">gui.add(light, 'penumbra', 0, 1, 0.01);
  322. </pre>
  323. <p></p><div translate="no" class="threejs_example_container notranslate">
  324. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/lights-spot-w-helper.html"></iframe></div>
  325. <a class="threejs_center" href="/manual/examples/lights-spot-w-helper.html" target="_blank">ここをクリックして別のウィンドウで開きます</a>
  326. </div>
  327. <p></p>
  328. <p>デフォルトの <code class="notranslate" translate="no">penumbra</code> が0の場合、集中光源は非常にシャープなエッジを持っていますが、1 に向けて <code class="notranslate" translate="no">penumbra</code> を調整するとエッジがぼやけます。</p>
  329. <p>集中光源の<em>円錐体</em>が見えにくいかもしれません。
  330. その理由は地面にあります。
  331. 距離を5くらいまで縮めると、円錐体の端が開いているのが見えてきます。</p>
  332. <h2 id="-rectarealight-"><code class="notranslate" translate="no">RectAreaLight(矩形光源)</code></h2>
  333. <p>もう1種類のライトに <a href="/docs/#api/ja/lights/RectAreaLight"><code class="notranslate" translate="no">RectAreaLight</code></a> があります。
  334. これはまさにその名の通り、長い蛍光灯のような長方形のエリアのライトや天井にある曇り空のライトです。</p>
  335. <p><a href="/docs/#api/ja/lights/RectAreaLight"><code class="notranslate" translate="no">RectAreaLight</code></a> は <a href="/docs/#api/ja/materials/MeshStandardMaterial"><code class="notranslate" translate="no">MeshStandardMaterial</code></a> と <a href="/docs/#api/ja/materials/MeshPhysicalMaterial"><code class="notranslate" translate="no">MeshPhysicalMaterial</code></a> でしか動作しないので、全てのマテリアルを <a href="/docs/#api/ja/materials/MeshStandardMaterial"><code class="notranslate" translate="no">MeshStandardMaterial</code></a> に変更しましょう。</p>
  336. <pre class="prettyprint showlinemods notranslate lang-js" translate="no"> ...
  337. const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize);
  338. - const planeMat = new THREE.MeshPhongMaterial({
  339. + const planeMat = new THREE.MeshStandardMaterial({
  340. map: texture,
  341. side: THREE.DoubleSide,
  342. });
  343. const mesh = new THREE.Mesh(planeGeo, planeMat);
  344. mesh.rotation.x = Math.PI * -.5;
  345. scene.add(mesh);
  346. }
  347. {
  348. const cubeSize = 4;
  349. const cubeGeo = new THREE.BoxGeometry(cubeSize, cubeSize, cubeSize);
  350. - const cubeMat = new THREE.MeshPhongMaterial({color: '#8AC'});
  351. + const cubeMat = new THREE.MeshStandardMaterial({color: '#8AC'});
  352. const mesh = new THREE.Mesh(cubeGeo, cubeMat);
  353. mesh.position.set(cubeSize + 1, cubeSize / 2, 0);
  354. scene.add(mesh);
  355. }
  356. {
  357. const sphereRadius = 3;
  358. const sphereWidthDivisions = 32;
  359. const sphereHeightDivisions = 16;
  360. const sphereGeo = new THREE.SphereGeometry(sphereRadius, sphereWidthDivisions, sphereHeightDivisions);
  361. - const sphereMat = new THREE.MeshPhongMaterial({color: '#CA8'});
  362. + const sphereMat = new THREE.MeshStandardMaterial({color: '#CA8'});
  363. const mesh = new THREE.Mesh(sphereGeo, sphereMat);
  364. mesh.position.set(-sphereRadius - 1, sphereRadius + 2, 0);
  365. scene.add(mesh);
  366. }
  367. </pre>
  368. <p><a href="/docs/#api/ja/lights/RectAreaLight"><code class="notranslate" translate="no">RectAreaLight</code></a> を使用するには、three.jsから追加のimportが必要です。
  369. ライトを可視化するために <a href="/docs/#api/ja/helpers/RectAreaLightHelper"><code class="notranslate" translate="no">RectAreaLightHelper</code></a> をimportします。</p>
  370. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">import * as THREE from 'three';
  371. +import {RectAreaLightUniformsLib} from 'three/addons/lights/RectAreaLightUniformsLib.js';
  372. +import {RectAreaLightHelper} from 'three/addons/helpers/RectAreaLightHelper.js';
  373. </pre>
  374. <p><code class="notranslate" translate="no">RectAreaLightUniformsLib.init</code> を呼び出します。</p>
  375. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">function main() {
  376. const canvas = document.querySelector('#c');
  377. const renderer = new THREE.WebGLRenderer({antialias: true, canvas});
  378. + RectAreaLightUniformsLib.init();
  379. </pre>
  380. <p>RectAreaLightUniformsLibを忘れてもライトは動作しますが、見た目がおかしくなるので忘れないようにして下さい。</p>
  381. <p>これでライトを作れました。</p>
  382. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const color = 0xFFFFFF;
  383. *const intensity = 5;
  384. +const width = 12;
  385. +const height = 4;
  386. *const light = new THREE.RectAreaLight(color, intensity, width, height);
  387. light.position.set(0, 10, 0);
  388. +light.rotation.x = THREE.MathUtils.degToRad(-90);
  389. scene.add(light);
  390. *const helper = new RectAreaLightHelper(light);
  391. *light.add(helper);
  392. </pre>
  393. <p>注意すべき点は <a href="/docs/#api/ja/lights/DirectionalLight"><code class="notranslate" translate="no">DirectionalLight</code></a> や <a href="/docs/#api/ja/lights/SpotLight"><code class="notranslate" translate="no">SpotLight</code></a> と異なり、<a href="/docs/#api/ja/lights/RectAreaLight"><code class="notranslate" translate="no">RectAreaLight</code></a> はターゲットを使いません。
  394. その回転を利用しているだけです。
  395. もう1つ気をつける事は、ヘルパーがライトの子である必要があります。
  396. 他のヘルパーのようにシーンの子ではありません。</p>
  397. <p>GUIも調整してみましょう。
  398. ライトを回転させて <code class="notranslate" translate="no">width</code> と <code class="notranslate" translate="no">height</code> を調整できるようにします。</p>
  399. <pre class="prettyprint showlinemods notranslate lang-js" translate="no">const gui = new GUI();
  400. gui.addColor(new ColorGUIHelper(light, 'color'), 'value').name('color');
  401. gui.add(light, 'intensity', 0, 10, 0.01);
  402. gui.add(light, 'width', 0, 20);
  403. gui.add(light, 'height', 0, 20);
  404. gui.add(new DegRadHelper(light.rotation, 'x'), 'value', -180, 180).name('x rotation');
  405. gui.add(new DegRadHelper(light.rotation, 'y'), 'value', -180, 180).name('y rotation');
  406. gui.add(new DegRadHelper(light.rotation, 'z'), 'value', -180, 180).name('z rotation');
  407. makeXYZGUI(gui, light.position, 'position');
  408. </pre>
  409. <p>そして、これが結果です。</p>
  410. <p></p><div translate="no" class="threejs_example_container notranslate">
  411. <div><iframe class="threejs_example notranslate" translate="no" style=" " src="/manual/examples/resources/editor.html?url=/manual/examples/lights-rectarea.html"></iframe></div>
  412. <a class="threejs_center" href="/manual/examples/lights-rectarea.html" target="_blank">ここをクリックして別のウィンドウで開きます</a>
  413. </div>
  414. <p></p>
  415. <p>シーンにライトを追加するたびに、Three.jsのレンダリング速度が遅くなる事に注意して下さい。</p>
  416. <p>次は<a href="cameras.html">カメラの扱い方</a>についてです。</p>
  417. <p><canvas id="c"></canvas></p>
  418. <script type="module" src="../resources/threejs-lights.js"></script>
  419. </div>
  420. </div>
  421. </div>
  422. <script src="../resources/prettify.js"></script>
  423. <script src="../resources/lesson.js"></script>
  424. </body></html>