Skip to content

Commit d2f3229

Browse files
Fix wrong Stable Zero123 node name.
1 parent 2258f85 commit d2f3229

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

comfy_extras/nodes_stable3d.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def camera_embeddings(elevation, azimuth):
2020
return embeddings
2121

2222

23-
class Zero123_Conditioning:
23+
class StableZero123_Conditioning:
2424
@classmethod
2525
def INPUT_TYPES(s):
2626
return {"required": { "clip_vision": ("CLIP_VISION",),
@@ -54,5 +54,5 @@ def encode(self, clip_vision, init_image, vae, width, height, batch_size, elevat
5454
return (positive, negative, {"samples":latent})
5555

5656
NODE_CLASS_MAPPINGS = {
57-
"Zero123_Conditioning": Zero123_Conditioning,
57+
"StableZero123_Conditioning": StableZero123_Conditioning,
5858
}

0 commit comments

Comments
 (0)