From 41f0b6b6465b8423b287d72482daa866ca6f1ca6 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Tue, 2 Jan 2024 13:10:11 +0200 Subject: [PATCH] Make blur_radius float --- nodes.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nodes.py b/nodes.py index b7185a8..0cce1e3 100644 --- a/nodes.py +++ b/nodes.py @@ -638,11 +638,11 @@ class GrowMaskWithBlur: "incremental_expandrate": ("INT", {"default": 0, "min": 0, "max": 100, "step": 1}), "tapered_corners": ("BOOLEAN", {"default": True}), "flip_input": ("BOOLEAN", {"default": False}), - "blur_radius": ("INT", { - "default": 0, - "min": 0, - "max": 999, - "step": 1 + "blur_radius": ("FLOAT", { + "default": 0.0, + "min": 0.0, + "max": 100, + "step": 0.1 }), "lerp_alpha": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}), "decay_factor": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}),