webgl_lensflares.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>three.js webgl - lensflares</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  7. <link type="text/css" rel="stylesheet" href="main.css">
  8. </head>
  9. <body>
  10. <div id="info">
  11. <a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> - lensflares<br/>
  12. textures from <a href="http://www.ro.me" target="_blank" rel="noopener">ro.me</a><br/>
  13. fly with WASD/RF/QE + mouse
  14. </div>
  15. <!-- Import maps polyfill -->
  16. <!-- Remove this when import maps will be widely supported -->
  17. <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
  18. <script type="importmap">
  19. {
  20. "imports": {
  21. "three": "../build/three.module.js",
  22. "three/addons/": "./jsm/"
  23. }
  24. }
  25. </script>
  26. <script type="module">
  27. import * as THREE from 'three';
  28. import Stats from 'three/addons/libs/stats.module.js';
  29. import { FlyControls } from 'three/addons/controls/FlyControls.js';
  30. import { Lensflare, LensflareElement } from 'three/addons/objects/Lensflare.js';
  31. let container, stats;
  32. let camera, scene, renderer;
  33. let controls;
  34. const clock = new THREE.Clock();
  35. init();
  36. animate();
  37. function init() {
  38. container = document.createElement( 'div' );
  39. document.body.appendChild( container );
  40. // camera
  41. camera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 1, 15000 );
  42. camera.position.z = 250;
  43. // scene
  44. scene = new THREE.Scene();
  45. scene.background = new THREE.Color().setHSL( 0.51, 0.4, 0.01, THREE.SRGBColorSpace );
  46. scene.fog = new THREE.Fog( scene.background, 3500, 15000 );
  47. // world
  48. const s = 250;
  49. const geometry = new THREE.BoxGeometry( s, s, s );
  50. const material = new THREE.MeshPhongMaterial( { color: 0xffffff, specular: 0xffffff, shininess: 50 } );
  51. for ( let i = 0; i < 3000; i ++ ) {
  52. const mesh = new THREE.Mesh( geometry, material );
  53. mesh.position.x = 8000 * ( 2.0 * Math.random() - 1.0 );
  54. mesh.position.y = 8000 * ( 2.0 * Math.random() - 1.0 );
  55. mesh.position.z = 8000 * ( 2.0 * Math.random() - 1.0 );
  56. mesh.rotation.x = Math.random() * Math.PI;
  57. mesh.rotation.y = Math.random() * Math.PI;
  58. mesh.rotation.z = Math.random() * Math.PI;
  59. mesh.matrixAutoUpdate = false;
  60. mesh.updateMatrix();
  61. scene.add( mesh );
  62. }
  63. // lights
  64. const dirLight = new THREE.DirectionalLight( 0xffffff, 0.15 );
  65. dirLight.position.set( 0, - 1, 0 ).normalize();
  66. dirLight.color.setHSL( 0.1, 0.7, 0.5 );
  67. scene.add( dirLight );
  68. // lensflares
  69. const textureLoader = new THREE.TextureLoader();
  70. const textureFlare0 = textureLoader.load( 'textures/lensflare/lensflare0.png' );
  71. const textureFlare3 = textureLoader.load( 'textures/lensflare/lensflare3.png' );
  72. addLight( 0.55, 0.9, 0.5, 5000, 0, - 1000 );
  73. addLight( 0.08, 0.8, 0.5, 0, 0, - 1000 );
  74. addLight( 0.995, 0.5, 0.9, 5000, 5000, - 1000 );
  75. function addLight( h, s, l, x, y, z ) {
  76. const light = new THREE.PointLight( 0xffffff, 1.5, 2000, 0 );
  77. light.color.setHSL( h, s, l );
  78. light.position.set( x, y, z );
  79. scene.add( light );
  80. const lensflare = new Lensflare();
  81. lensflare.addElement( new LensflareElement( textureFlare0, 700, 0, light.color ) );
  82. lensflare.addElement( new LensflareElement( textureFlare3, 60, 0.6 ) );
  83. lensflare.addElement( new LensflareElement( textureFlare3, 70, 0.7 ) );
  84. lensflare.addElement( new LensflareElement( textureFlare3, 120, 0.9 ) );
  85. lensflare.addElement( new LensflareElement( textureFlare3, 70, 1 ) );
  86. light.add( lensflare );
  87. }
  88. // renderer
  89. renderer = new THREE.WebGLRenderer( { antialias: true } );
  90. renderer.setPixelRatio( window.devicePixelRatio );
  91. renderer.setSize( window.innerWidth, window.innerHeight );
  92. container.appendChild( renderer.domElement );
  93. //
  94. controls = new FlyControls( camera, renderer.domElement );
  95. controls.movementSpeed = 2500;
  96. controls.domElement = container;
  97. controls.rollSpeed = Math.PI / 6;
  98. controls.autoForward = false;
  99. controls.dragToLook = false;
  100. // stats
  101. stats = new Stats();
  102. container.appendChild( stats.dom );
  103. // events
  104. window.addEventListener( 'resize', onWindowResize );
  105. }
  106. //
  107. function onWindowResize() {
  108. renderer.setSize( window.innerWidth, window.innerHeight );
  109. camera.aspect = window.innerWidth / window.innerHeight;
  110. camera.updateProjectionMatrix();
  111. }
  112. //
  113. function animate() {
  114. requestAnimationFrame( animate );
  115. render();
  116. stats.update();
  117. }
  118. function render() {
  119. const delta = clock.getDelta();
  120. controls.update( delta );
  121. renderer.render( scene, camera );
  122. }
  123. </script>
  124. </body>
  125. </html>