From d2f322902cf33c7235e7982900b5a88d55d5ecd1 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Mon, 18 Dec 2023 03:59:50 -0500 Subject: [PATCH] Fix wrong Stable Zero123 node name. --- comfy_extras/nodes_stable3d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_extras/nodes_stable3d.py b/comfy_extras/nodes_stable3d.py index fa64d924..c6791d8d 100644 --- a/comfy_extras/nodes_stable3d.py +++ b/comfy_extras/nodes_stable3d.py @@ -20,7 +20,7 @@ def camera_embeddings(elevation, azimuth): return embeddings -class Zero123_Conditioning: +class StableZero123_Conditioning: @classmethod def INPUT_TYPES(s): return {"required": { "clip_vision": ("CLIP_VISION",), @@ -54,5 +54,5 @@ class Zero123_Conditioning: return (positive, negative, {"samples":latent}) NODE_CLASS_MAPPINGS = { - "Zero123_Conditioning": Zero123_Conditioning, + "StableZero123_Conditioning": StableZero123_Conditioning, }