From 16a862c72229f633d02e6b6ab188a1acb82fb04b Mon Sep 17 00:00:00 2001 From: Saquib Alam Date: Tue, 8 Aug 2023 20:33:41 +0530 Subject: [PATCH] debug --- nodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 962f41e16..4ac0aa02a 100644 --- a/nodes.py +++ b/nodes.py @@ -1449,7 +1449,8 @@ class ImageAlphaComposite: RETURN_TYPES = ("IMAGE", "MASK") FUNCTION = "alpha_composite" def alpha_composite(self, image1, mask1, image2, mask2): - image = image1 * mask1 + image2 * (1.0 - mask1) + print(image.get_shape(), mask1.get_shape()) + image = image1 * mask1 return (image, mask1) class ImageScaleBy: