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
This commit is contained in:
irakli-ff 2023-08-21 23:36:42 +08:00 committed by GitHub
parent bc76b3829f
commit 2f4f1990c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1222,6 +1222,7 @@ class KSamplerAdvanced:
"start_at_step": ("INT", {"default": 0, "min": 0, "max": 10000}), "start_at_step": ("INT", {"default": 0, "min": 0, "max": 10000}),
"end_at_step": ("INT", {"default": 10000, "min": 0, "max": 10000}), "end_at_step": ("INT", {"default": 10000, "min": 0, "max": 10000}),
"return_with_leftover_noise": (["disable", "enable"], ), "return_with_leftover_noise": (["disable", "enable"], ),
"denoise": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}),
} }
} }