Rain.js 937 B

12345678910111213141516171819202122232425262728
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "uniform sampler2D colorTexture;//输入的场景渲染照片\n\
  3. varying vec2 v_textureCoordinates;\n\
  4. \n\
  5. float hash(float x){\n\
  6. return fract(sin(x*133.3)*13.13);\n\
  7. }\n\
  8. \n\
  9. void main(void){\n\
  10. \n\
  11. float time = czm_frameNumber / 60.0;\n\
  12. vec2 resolution = czm_viewport.zw;\n\
  13. \n\
  14. vec2 uv=(gl_FragCoord.xy*2.-resolution.xy)/min(resolution.x,resolution.y);\n\
  15. vec3 c=vec3(.6,.7,.8);\n\
  16. \n\
  17. float a=-.4;\n\
  18. float si=sin(a),co=cos(a);\n\
  19. uv*=mat2(co,-si,si,co);\n\
  20. uv*=length(uv+vec2(0,9.9))*.3+1.;\n\
  21. \n\
  22. float v=1.-sin(hash(floor(uv.x*100.))*2.);\n\
  23. float b=clamp(abs(sin(20.*time*v+uv.y*(5./(2.+v))))-.95,0.,1.)*20.;\n\
  24. c*=v*b; //屏幕上雨的颜色\n\
  25. \n\
  26. gl_FragColor = mix(texture2D(colorTexture, v_textureCoordinates), vec4(c,1), 0.5); //将雨和三维场景融合\n\
  27. \n\
  28. } "