From 2f4f1990c8d2bb5d4452f8e1f6aceff36197a85d Mon Sep 17 00:00:00 2001 From: irakli-ff <125235498+irakli-ff@users.noreply.github.com> Date: Mon, 21 Aug 2023 23:36:42 +0800 Subject: [PATCH] Update nodes.py to fix missing denoise lever on advanced KSampler advanced KSampler was missing denoise lever making it impossible in any kind of img2img workflows --- nodes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nodes.py b/nodes.py index 27a329c68..157c4bf75 100644 --- a/nodes.py +++ b/nodes.py @@ -1222,6 +1222,7 @@ class KSamplerAdvanced: "start_at_step": ("INT", {"default": 0, "min": 0, "max": 10000}), "end_at_step": ("INT", {"default": 10000, "min": 0, "max": 10000}), "return_with_leftover_noise": (["disable", "enable"], ), + "denoise": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}), } }