-
Notifications
You must be signed in to change notification settings - Fork 37
Unit Reference ChanceFlow
S2NX7 edited this page Oct 5, 2025
·
2 revisions

The ChanceFlow node triggers one of two outputs based on a given probability.
This allows you to add randomness or chance-based logic to your graphs.
The probability value is clamped between 0 and 100%, and a random value is compared against it to determine which output is triggered.
Input Ports
-
value : The probability (0–100) that determines the chance to trigger the
Succeeded
output. - enter : The control flow input that triggers the evaluation.
Output Ports
- Succeeded : Control flow output triggered if the random check succeeds based on the probability.
- Failed : Control flow output triggered if the random check fails.