Created
May 18, 2021 23:13
-
-
Save julian-a-avar-c/6b1e1104fdbfac0ad682e06094cc5c19 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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