
When multiple connection types (Regular, Chance, and Condition) come from the same node output, they are processed in a specific order:
1
Separate Connections
Connections are grouped into Deterministic (Regular + passing Conditions) and Chance connections.
2
Evaluate Conditions
Condition connections are evaluated. Those that pass join the Deterministic group; those that fail are skipped.
3
Execute Deterministic
All deterministic connections execute in parallel - Regular connections always execute, and passing Condition connections execute together.
4
Process Chance
If chance connections exist, one is randomly selected based on weighted probability. If total chance < 100%, there's a chance no connection executes.