diff --git a/nodes.py b/nodes.py index 4ac0aa02a..0bd41d2fb 100644 --- a/nodes.py +++ b/nodes.py @@ -1449,7 +1449,7 @@ class ImageAlphaComposite: RETURN_TYPES = ("IMAGE", "MASK") FUNCTION = "alpha_composite" def alpha_composite(self, image1, mask1, image2, mask2): - print(image.get_shape(), mask1.get_shape()) + print(image1.get_shape(), mask1.get_shape()) image = image1 * mask1 return (image, mask1)