From 2fc439fb77ec21aa8e5c380b3eece15468f5fbbc Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Sun, 31 May 2026 16:45:56 +0300 Subject: [PATCH] Meshing level can be 0.0 --- comfy_extras/nodes_gaussian_splat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_gaussian_splat.py b/comfy_extras/nodes_gaussian_splat.py index 75d12e591..5cb531db2 100644 --- a/comfy_extras/nodes_gaussian_splat.py +++ b/comfy_extras/nodes_gaussian_splat.py @@ -1612,7 +1612,7 @@ class SplatToMesh(IO.ComfyNode): IO.Int.Input("smooth", default=0, min=0, max=60, advanced = True, tooltip="Taubin mesh-smoothing iterations. Smooths the surface without shrinking it " "(volume-preserving), unlike blurring the density. 0 = raw surface."), - IO.Float.Input("level", default=0.6, min=0.3, max=2.0, step=0.05, + IO.Float.Input("level", default=0.4, min=0.0, max=2.0, step=0.01, tooltip="Iso-surface level. Auto-picked by Otsu; this biases it (1.0 = auto, lower = " "fatter/more-connected surface, higher = thinner/tighter)."), IO.Int.Input("min_component", default=500, min=0, max=100000, step=50, advanced=True,