From ce546a369802b7a6183897ee56066eab2f828170 Mon Sep 17 00:00:00 2001 From: Saquib Alam Date: Tue, 8 Aug 2023 20:35:16 +0530 Subject: [PATCH] Update nodes.pydebug --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)