From 8262e2c59d721512a232bda6c929e301de8e97ff Mon Sep 17 00:00:00 2001 From: kijai Date: Mon, 20 Jul 2026 17:21:31 +0300 Subject: [PATCH] Adjust pre_cluster default --- comfy_extras/nodes_mesh_postprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_mesh_postprocess.py b/comfy_extras/nodes_mesh_postprocess.py index a2ff49af8..8947b90fd 100644 --- a/comfy_extras/nodes_mesh_postprocess.py +++ b/comfy_extras/nodes_mesh_postprocess.py @@ -2331,7 +2331,7 @@ class RemeshMesh(IO.ComfyNode): tooltip="Taubin smoothing iterations (0 = off). 2-3 cleans DC staircase-like artifacts; higher over-smooth QEF edges."), IO.Float.Input("drop_small_components", default=0.01, min=0.0, max=0.5, step=0.005, advanced=True, tooltip="Drop components below this fraction of the largest's face count. 0 disables."), - IO.Int.Input("precluster_max_verts", default=8_000_000, min=0, max=50_000_000, advanced=True, + IO.Int.Input("precluster_max_verts", default=20_000_000, min=0, max=100_000_000, advanced=True, tooltip="Cap input vertex count before the field queries, inputs above this are cluster-decimated to it first. Prevents OOM on huge meshes."), ], outputs=[IO.Mesh.Output("mesh")],