A specialized node for ComfyUI that provides balanced weight control across multiple elements in image generation workflows, helping prevent CFG burnout while maintaining proper relationships between weights.
A custom node pack for ComfyUI providing a stack of named sliders with dynamic behavior.
Slider Stacker: A node with a configurable number of named sliders (up to 50).
Slider Receiver: Extracts the weight value of a specific slider from the stack output based on its index.
Dynamic Max Strength: Adjusting the slider_max_strength
scales all individual sliders proportionally.
Dynamic Individual Sliders: Adjusting an individual slider_wt
updates the slider_max_strength
to reflect the new highest value among all sliders.
String Output: Outputs a comma-separated string of the current weights for all active sliders.
Dynamic UI: Automatically shows/hides slider input rows based on the slider_count
setting.
Context Menu: Right-click options for batch slider operations (Average, Reset, Set All to Max/Min).
Inputs:
slider_max_strength
(FLOAT): The master maximum value. Adjusting this scales all sliders below it.slider_count
(INT): Controls how many slider rows are visible and processed (1-50).slider_name_{i}
(STRING): A text field to name or describe the slider (optional).({i})
(FLOAT Widget): The individual weight for this slider (0.0-2.0). Adjusting this updates the slider_max_strength
if this slider becomes the new maximum.Output:
SLIDER_WEIGHTS
(STRING): A comma-separated string of the weight values for sliders 1 through slider_count
, formatted to two decimal places (e.g., "1.00, 0.50, 0.75").Right-Click Options:
Average Slider Values
: Sets all visible sliders to their average value.Reset Slider Values
: Resets all visible sliders to the default value (1.0).Set All to Max Value
: Finds the highest value among visible sliders and sets all visible sliders to that value.Set All to Min Value
: Finds the lowest value among visible sliders and sets all visible sliders to that value.Inputs:
weights_string
(STRING): Connect the SLIDER_WEIGHTS
output from the Slider Stacker
here.index
(INT): The 1-based index of the slider whose weight you want to extract (1-50).Output:
WEIGHT
(FLOAT): The floating-point value of the slider at the specified index (returns 0.0 if the index is out of bounds or input is invalid).Dynamic_sliders_stack
.Dynamic_sliders_stack
folder inside your ComfyUI custom_nodes
directory.Slider Stacker
node (found under the Dynamic Sliders Stack
category).slider_count
.Slider Receiver
node.SLIDER_WEIGHTS
to weights_string
.index
on the Receiver.WEIGHT
output.This node setup provides a centralized control panel for managing multiple numerical weights within your workflow. Here are a few examples:
Slider Stacker
to adjust the overall impact (slider_max_strength
) or fine-tune individual LoRA weights. Use Slider Receiver
to retrieve specific weights.Slider Receiver
outputs to nodes that adjust their strength.Slider Stacker
for centralized adjustments.Slider Receiver
outputs.Slider Stacker
nodes to create a 'dashboard' for managing weights.Check the LICENSE file. Remember to update the placeholder copyright line Copyright (c) 2024 Your Name or Project Name Here
with the correct year and your name/project name.
This version improves readability and organizes the sections more effectively. Let me know if you’d like further adjustments!