threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VignettePlugin.glsl 266B

123456
  1. vec4 Vignette(in vec4 color) {
  2. vec2 uv = vUv * (1.0 - vUv);
  3. float vig = uv.x * uv.y * 16.0; // max value of this function is 1/16 at the centre(0.5, 0.5)
  4. vig = pow(vig, power);
  5. return vec4( mix( color.rgb, vec3( bgcolor ), 1. - vig ), color.a );
  6. }