diff --git a/nodes.py b/nodes.py index 8e10746..b0ee3e7 100644 --- a/nodes.py +++ b/nodes.py @@ -1082,6 +1082,7 @@ class Hy3DMeshInfo: CATEGORY = "Hunyuan3DWrapper" def process(self, mesh): + log.info(f"Hy3DMeshInfo: Mesh has {vertices_count} vertices and {mesh.faces.shape[0]} faces") vertices_count = mesh.vertices.shape[0] faces_count = mesh.faces.shape[0] diff --git a/pyproject.toml b/pyproject.toml index f0f3922..acb947d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-videonoisewarp" description = "Wrapper nodes for https://github.com/Tencent/Hunyuan3D-2, additional installation steps needed, please check the github repository" -version = "1.0.0" +version = "1.0.1" license = {file = "LICENSE"} dependencies = ["trimesh", "diffusers>=0.31.0","accelerate","huggingface_hub","einops","opencv-python","transformers","xatlas","pymeshlab","pygltflib","scikit-learn","scikit-image","pybind11"]