Skip to content

Instantly share code, notes, and snippets.

@julian-a-avar-c
Created May 18, 2021 23:13
Show Gist options
  • Save julian-a-avar-c/6b1e1104fdbfac0ad682e06094cc5c19 to your computer and use it in GitHub Desktop.
Save julian-a-avar-c/6b1e1104fdbfac0ad682e06094cc5c19 to your computer and use it in GitHub Desktop.
// godot shader
shader_type canvas_item;
uniform float bell_width = 4.0;
float bell(float x) {
return exp(-pow(bell_width * (x - 0.5), 2));
}
// usage
void fragment() {
COLOR = vec4(COLOR.r, COLOR.g, COLOR.b, bell(UV.y));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment