From 90cf4e62857c88199f82ad67edecc17aa1949c17 Mon Sep 17 00:00:00 2001 From: Austin Mroz Date: Tue, 11 Feb 2025 14:45:57 -0600 Subject: [PATCH] Fix missed rename --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index f1b0268..0bf6087 100644 --- a/nodes.py +++ b/nodes.py @@ -973,7 +973,7 @@ class Hy3DLoadMesh: def load(self, glb_path): - trimesh = trimesh.load(glb_path, force="mesh") + trimesh = Trimesh.load(glb_path, force="mesh") return (trimesh,)