Compare commits

...

2 Commits

Author SHA1 Message Date
Terry Jia
2b57cee00f
Merge 1f6e767428 into acbf08cd60 2026-01-04 15:40:25 +08:00
Terry Jia
1f6e767428 add ply & 3dgs format in 3d node 2025-12-23 08:35:22 -05:00

View File

@ -24,7 +24,7 @@ class Load3D(IO.ComfyNode):
files = [
normalize_path(str(file_path.relative_to(base_path)))
for file_path in input_path.rglob("*")
if file_path.suffix.lower() in {'.gltf', '.glb', '.obj', '.fbx', '.stl'}
if file_path.suffix.lower() in {'.gltf', '.glb', '.obj', '.fbx', '.stl', '.spz', '.splat', '.ply', '.ksplat'}
]
return IO.Schema(
node_id="Load3D",