Rain.glsl 755 B

1234567891011121314151617181920212223242526
  1. uniform sampler2D colorTexture;//输入的场景渲染照片
  2. varying vec2 v_textureCoordinates;
  3. float hash(float x){
  4. return fract(sin(x*133.3)*13.13);
  5. }
  6. void main(void){
  7. float time = czm_frameNumber / 500.0;
  8. vec2 resolution = czm_viewport.zw;
  9. vec2 uv=(gl_FragCoord.xy*2.-resolution.xy)/min(resolution.x,resolution.y);
  10. vec3 c=vec3(.6,.7,.8);
  11. float a=-.4;
  12. float si=sin(a),co=cos(a);
  13. uv*=mat2(co,-si,si,co);
  14. uv*=length(uv+vec2(0,4.9))*.3+1.;
  15. float v=1.-sin(hash(floor(uv.x*100.))*2.);
  16. float b=clamp(abs(sin(20.*time*v+uv.y*(5./(2.+v))))-.95,0.,1.)*20.;
  17. c*=v*b; //屏幕上雨的颜色
  18. gl_FragColor = mix(texture2D(colorTexture, v_textureCoordinates), vec4(c,1), 0.5); //将雨和三维场景融合
  19. }