From ab31b64412c46334267fade77b688e9e561e10d6 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Wed, 9 Apr 2025 09:42:08 -0400 Subject: [PATCH] Make "surface net" the default in the VoxelToMesh node. --- comfy_extras/nodes_hunyuan3d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_hunyuan3d.py b/comfy_extras/nodes_hunyuan3d.py index 30cbd06d..51e45336 100644 --- a/comfy_extras/nodes_hunyuan3d.py +++ b/comfy_extras/nodes_hunyuan3d.py @@ -431,7 +431,7 @@ class VoxelToMesh: @classmethod def INPUT_TYPES(s): return {"required": {"voxel": ("VOXEL", ), - "algorithm": (["basic", "surface net"], ), + "algorithm": (["surface net", "basic"], ), "threshold": ("FLOAT", {"default": 0.6, "min": -1.0, "max": 1.0, "step": 0.01}), }} RETURN_TYPES = ("MESH",)