ComfyUI Node
AM Seed
A ComfyUI node in AM VFX Tools/Util with 5 inputs and 1 output.
AM Seed
- seed
◄moderandomize►
◄value0►
◄step1►
◄min0►
◄max2147483647►
CategoryAM VFX Tools/Util
Inputs (5)
| Name | Type | Default | Description |
|---|---|---|---|
| mode | COMBO | randomize | Seed selection mode. randomize = fresh draw from [min,max] each prompt (default). fixed = emit `value` clamped to [min,max]. increment / decrement = `value ± step·n` per execution, clamped at the bounds. Mode logic runs server-side so it behaves identically on headless render farms. |
| value | INT | 00–2147483647 | fixed: emitted directly (clamped to [min,max]). increment / decrement: starting base; advances by `step` per execution. randomize: ignored — a fresh value is drawn from [min,max]. |
| step | INT | 11–1000000 | increment / decrement step. Ignored in fixed / randomize modes. |
| min | INT | 00–2147483647 | Lower bound used by randomize and as a clamp for the others. |
| max | INT | 21474836470–2147483647 | Upper bound used by randomize and as a clamp for the others. Default 2,147,483,647 (int32 max) for compatibility with API nodes that reject larger seeds. |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| seed | INT | Resolved seed value. Wire into samplers / API nodes that take a seed input. AM Image Write / AM Video Write also pick up this seed automatically via the process-global registry (their `seed` widget at -1 = look up). |