diff --git a/nodes.py b/nodes.py index 6ae911fdd..b3e7e6006 100644 --- a/nodes.py +++ b/nodes.py @@ -879,7 +879,7 @@ class RepeatLatentBatch: return (s,) class LatentUpscale: - upscale_methods = ["nearest-exact", "bilinear", "area", "bislerp"] + upscale_methods = ["nearest-exact", "bilinear", "area", "bicubic", "bislerp"] crop_methods = ["disabled", "center"] @classmethod @@ -899,7 +899,7 @@ class LatentUpscale: return (s,) class LatentUpscaleBy: - upscale_methods = ["nearest-exact", "bilinear", "area", "bislerp"] + upscale_methods = ["nearest-exact", "bilinear", "area", "bicubic", "bislerp"] @classmethod def INPUT_TYPES(s): @@ -1295,7 +1295,7 @@ class LoadImageMask: return True class ImageScale: - upscale_methods = ["nearest-exact", "bilinear", "area"] + upscale_methods = ["nearest-exact", "bilinear", "area", "bicubic"] crop_methods = ["disabled", "center"] @classmethod @@ -1316,7 +1316,7 @@ class ImageScale: return (s,) class ImageScaleBy: - upscale_methods = ["nearest-exact", "bilinear", "area"] + upscale_methods = ["nearest-exact", "bilinear", "area", "bicubic"] @classmethod def INPUT_TYPES(s):