From ea2ed3e5c4f17569c9cd3ebfd0e53680205ebcc4 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:22:51 +1100 Subject: [PATCH] fix: graphical artifact during sdf deformation --- plugin/src/Caelestia/Blobs/shaders/blob.frag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/Caelestia/Blobs/shaders/blob.frag b/plugin/src/Caelestia/Blobs/shaders/blob.frag index 90133563..f6387a2f 100644 --- a/plugin/src/Caelestia/Blobs/shaders/blob.frag +++ b/plugin/src/Caelestia/Blobs/shaders/blob.frag @@ -203,7 +203,7 @@ void main() { } mergedSdf = sminNoBulge(mergedSdf, d, smoothFactor); - if (d < minDist) { + if (d < smoothFactor && d < minDist) { minDist = d; owner = i; }