RectAreaLightHelper.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="page.css" />
  8. </head>
  9. <body>
  10. [page:Object3D] &rarr;
  11. <h1>[name]</h1>
  12. <p class="desc">
  13. Creates a visual aid for a [page:RectAreaLight].
  14. </p>
  15. <h2>Code Example</h2>
  16. <code>
  17. const light = new THREE.RectAreaLight( 0xffffbb, 1.0, 5, 5 );
  18. const helper = new RectAreaLightHelper( light );
  19. light.add( helper ); // helper must be added as a child of the light
  20. </code>
  21. <h2>Constructor</h2>
  22. <h3>[name]( [param:RectAreaLight light], [param:Hex color] )</h3>
  23. <p>
  24. [page:RectAreaLight light] -- The light being visualized.<br /><br />
  25. [page:Hex color] -- (optional) if this is not the set the helper will take the color of the light.
  26. </p>
  27. <h2>Properties</h2>
  28. <p>See the base [page:Object3D] class for common properties.</p>
  29. <h3>[property:RectAreaLight light]</h3>
  30. <p>Reference to the RectAreaLight being visualized.</p>
  31. <h3>[property:hex color]</h3>
  32. <p>
  33. The color parameter passed in the constructor. Default is *undefined*. If this is changed, the helper's color will update
  34. the next time [page:.update update] is called.
  35. </p>
  36. <h2>Methods</h2>
  37. <p>See the base [page:Object3D] class for common methods.</p>
  38. <h3>[method:null dispose]()</h3>
  39. <p>Dispose of the rectAreaLightHelper.</p>
  40. <h3>[method:null update]()</h3>
  41. <p>Updates the helper to match the position and direction of the [page:.light].</p>
  42. <h2>Source</h2>
  43. <p>
  44. [link:https://github.com/mrdoob/three.js/blob/master/examples/jsm/helpers/RectAreaLightHelper.js examples/jsm/helpers/RectAreaLightHelper.js]
  45. </p>
  46. </body>
  47. </html>