summaryrefslogtreecommitdiff
path: root/assets/platform_f.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'assets/platform_f.glsl')
-rw-r--r--assets/platform_f.glsl5
1 files changed, 2 insertions, 3 deletions
diff --git a/assets/platform_f.glsl b/assets/platform_f.glsl
index 82c8740..7877ff5 100644
--- a/assets/platform_f.glsl
+++ b/assets/platform_f.glsl
@@ -9,9 +9,8 @@ void main() {
float h = clamp(dot(pos-p1, p2-p1) / dot(p2-p1, p2-p1), 0.0, 1.0);
float d = length(pos - p1 - (p2-p1) * h);
- float v = max(thickness - d, 0.0);
- v /= thickness;
- v *= v;
+ d /= thickness;
+ float v = 1.0 - d * d;
gl_FragColor = color * v;
}