shaders/EquirectShader.js

  1. /**
  2. * Equirectangular shader
  3. * based on three.js equirect shader
  4. * @author pchen66
  5. */
  6. import * as THREE from 'three';
  7. /**
  8. * @description Equirectangular Shader
  9. * @module EquirectShader
  10. * @property {object} uniforms
  11. * @property {THREE.Texture} uniforms.texture diffuse map
  12. * @property {number} uniforms.opacity image opacity
  13. * @property {string} vertexShader vertex shader
  14. * @property {string} fragmentShader fragment shader
  15. */
  16. const EquirectShader = {
  17. uniforms: {
  18. 'texture': { value: new THREE.Texture() },
  19. 'repeat': { value: new THREE.Vector2( 1.0, 1.0 ) },
  20. 'offset': { value: new THREE.Vector2( 0.0, 0.0 ) },
  21. 'opacity': { value: 1.0 }
  22. },
  23. vertexShader: `
  24. varying vec3 vWorldDirection;
  25. #include <common>
  26. void main() {
  27. vWorldDirection = transformDirection( position, modelMatrix );
  28. #include <begin_vertex>
  29. #include <project_vertex>
  30. }
  31. `,
  32. fragmentShader: `
  33. uniform sampler2D texture;
  34. uniform vec2 repeat;
  35. uniform vec2 offset;
  36. uniform float opacity;
  37. varying vec3 vWorldDirection;
  38. #include <common>
  39. void main() {
  40. vec3 direction = normalize( vWorldDirection );
  41. vec2 sampleUV;
  42. sampleUV.y = asin( clamp( direction.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5;
  43. sampleUV.x = atan( direction.z, direction.x ) * RECIPROCAL_PI2 + 0.5;
  44. sampleUV *= repeat;
  45. sampleUV += offset;
  46. sampleUV.x = fract(sampleUV.x);
  47. sampleUV.y = fract(sampleUV.y);
  48. gl_FragColor = vec4(texture2D( texture, sampleUV ).rgb, opacity);
  49. }
  50. `
  51. };
  52. export { EquirectShader };