ComfyUI Node
MD: Advanced Seed Generator
A ComfyUI node in MD_Nodes/Utility with 4 inputs and 2 outputs.
MD: Advanced Seed Generator
- seed
- seed_str
◄seed0►
◄actionFixed►
◄seed_offset0►
◄debug_mode0 - Silent►
CategoryMD_Nodes/Utility
Inputs (4)
| Name | Type | Default | Description |
|---|---|---|---|
| seed | INT | 00–9007199254740991 | BASE SEED • Purpose: The starting point for seed generation. • Range: 0 to 9,007,199,254,740,991 (JS-Safe). ⭐ Recommended: Keep at 0 or your favorite seed, use 'Fixed' mode to stick to it. |
| action | COMBO | Fixed | GENERATION ACTION • Purpose: Controls how the final seed is calculated. • Fixed: Output = Seed + Offset • Randomize: Output = Crypto-Random Number • Increment: Output = Seed + Offset + 1 (Wraps) • Decrement: Output = Seed + Offset - 1 (Wraps) • System Time: Output = Current Nanosecond Timestamp ⭐ Recommended: 'Fixed' for reproducibility, 'Randomize' for exploration. |
| seed_offset | INT | 0-9007199254740991–9007199254740991 | SEED OFFSET • Purpose: Add/Subtract from the base seed without changing the base input. • Note: Applied in all modes except 'System Time'. ⭐ Recommended: Use for variations (e.g. set Base to 100, Offset to 1, 2, 3...) |
| debug_mode | COMBO | 0 - Silent | LOGGING VERBOSITY • Purpose: Controls console output detail level. • Options: 0 (Production), 1 (Analytics Report), 2 (Full trace). ⭐ Recommended: 1 - Info when optimizing workflows. |
Outputs (2)
| Name | Type | Description |
|---|---|---|
| seed | INT | — |
| seed_str | STRING | — |