Skip to content

Commit

Permalink
Changed the default value for softness
Browse files Browse the repository at this point in the history
  • Loading branch information
SeargeDP committed Aug 3, 2023
1 parent 6f05474 commit 2c99c4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion searge_sdxl_sampler_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def INPUT_TYPES(s):
"scaled_height": ("INT", {"default": 1536, "min": 0, "max": nodes.MAX_RESOLUTION, "step": 8}),
"noise_offset": ("INT", {"default": 1, "min": 0, "max": 1}),
"refiner_strength": ("FLOAT", {"default": 1.0, "min": 0.1, "max": 1.0, "step": 0.05}),
"softness": ("FLOAT", {"default": 0.5, "min": 0.0, "max": 1.0, "step": 0.05}),
"softness": ("FLOAT", {"default": 0.0, "min": 0.0, "max": 1.0, "step": 0.05}),
},
}

Expand Down

0 comments on commit 2c99c4d

Please sign in to comment.