mirror of
https://git.datalinker.icu/kijai/ComfyUI-KJNodes.git
synced 2026-05-22 18:35:44 +08:00
Make blur_radius float
This commit is contained in:
parent
7ec8aa66c8
commit
41f0b6b646
10
nodes.py
10
nodes.py
@ -638,11 +638,11 @@ class GrowMaskWithBlur:
|
|||||||
"incremental_expandrate": ("INT", {"default": 0, "min": 0, "max": 100, "step": 1}),
|
"incremental_expandrate": ("INT", {"default": 0, "min": 0, "max": 100, "step": 1}),
|
||||||
"tapered_corners": ("BOOLEAN", {"default": True}),
|
"tapered_corners": ("BOOLEAN", {"default": True}),
|
||||||
"flip_input": ("BOOLEAN", {"default": False}),
|
"flip_input": ("BOOLEAN", {"default": False}),
|
||||||
"blur_radius": ("INT", {
|
"blur_radius": ("FLOAT", {
|
||||||
"default": 0,
|
"default": 0.0,
|
||||||
"min": 0,
|
"min": 0.0,
|
||||||
"max": 999,
|
"max": 100,
|
||||||
"step": 1
|
"step": 0.1
|
||||||
}),
|
}),
|
||||||
"lerp_alpha": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}),
|
"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}),
|
"decay_factor": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user