Skip to main content

NoiseInjectionDetailerHookProvider

ImpactPack/Detailer
NoiseInjectionDetailerHookProvider

Example

JSON Example
{
  "class_type": "NoiseInjectionDetailerHookProvider",
  "inputs": {
    "schedule_for_cycle": "skip_start",
    "source": "CPU",
    "seed": 0,
    "start_strength": 2,
    "end_strength": 1
  }
}

This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.

Inputs

NameTypeStatusConstraintsDefault
schedule_for_cycleENUM
2 options
  • skip_start
  • from_start
required--
sourceENUM
2 options
  • CPU
  • GPU
required--
seedINTrequiredmin: 0, max: 1.84e+190
start_strengthFLOATrequiredmin: 0, max: 200, step: 0.012
end_strengthFLOATrequiredmin: 0, max: 200, step: 0.011

Outputs

IndexNameTypeIs ListConnection Reference
0DETAILER_HOOKDETAILER_HOOKNo["{node_id}", 0]
How to connect to these outputs

To connect another node's input to an output from this node, use the connection reference format:

["node_id", output_index]

Where node_id is the ID of this NoiseInjectionDetailerHookProvider node in your workflow, and output_index is the index from the table above.

Example

If this node has ID "5" in your workflow:

  • DETAILER_HOOK (DETAILER_HOOK): ["5", 0]
Was this page helpful?