Update nodes.py

This commit is contained in:
kijai 2025-02-11 14:19:54 +02:00
parent ac28a60ac0
commit b2a0f3d60c

View File

@ -1266,7 +1266,7 @@ class Hy3DIMRemesh:
if triangulate_result:
new_faces = trimesh.geometry.triangulate_quads(new_faces)
new_mesh = trimesh.Trimesh(new_verts, new_faces)
new_mesh = Trimesh.Trimesh(new_verts, new_faces)
return (new_mesh, )