Compare commits

..

No commits in common. "ff49facee2802fffc75f8d52a9d3bfa3fdc05227" and "3e47f975ff66bccb0dbccb936c654b49520076c2" have entirely different histories.

View File

@ -330,7 +330,7 @@ class FeatherMask(IO.ComfyNode):
for x in range(right):
feather_rate = (x + 1) / right
output[:, :, -(x + 1)] *= feather_rate
output[:, :, -x] *= feather_rate
for y in range(top):
feather_rate = (y + 1) / top
@ -338,7 +338,7 @@ class FeatherMask(IO.ComfyNode):
for y in range(bottom):
feather_rate = (y + 1) / bottom
output[:, -(y + 1), :] *= feather_rate
output[:, -y, :] *= feather_rate
return IO.NodeOutput(output)