Expand description
Transition is a connection between two states with a rule that defines possibility of actual transition with blending.
Structs§
- AndNode
- Calculates logical AND between two arguments. Output value will be
trueiff both of the arguments istrue. - NotNode
- Calculates logical NOT of an argument. Output value will be
trueif the value of the argument isfalse. - OrNode
- Calculates logical OR between two arguments. Output value will be
trueiff any of the arguments istrue. - Transition
- Transition is a connection between two states with a rule that defines possibility of actual transition with blending.
- XorNode
- Calculates logical XOR (excluding OR) between two arguments. Output value will be
trueiff the arguments differ.
Enums§
- Logic
Node - A node responsible for logical operations evaluation. It can have any number of descendant nodes.