Module transition

Module transition 

Source
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 true iff both of the arguments is true.
NotNode
Calculates logical NOT of an argument. Output value will be true if the value of the argument is false.
OrNode
Calculates logical OR between two arguments. Output value will be true iff any of the arguments is true.
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 true iff the arguments differ.

Enums§

LogicNode
A node responsible for logical operations evaluation. It can have any number of descendant nodes.