Loading...
The Condition Filter Node checks up to eight pairs of values if one is smaller than, equal to, or greater than the other value. The output condition is "true" when all subordinate conditions are also "true". If one or more are "false", the output condition is also "false".
The node can be found under Nodes > Filter Nodes > Condition
The value pairs can be defined with the drop-down left and right of the operator.
Choose an input node from the drop-down or enter a numeric value.
= Equal to
=> Greater than or equal to
> Greater than
<= Less than or equal to
< Less than
<> Less than and greater than
If all of the above statements are "true", this input node value or entered numeric value will be given out as output value.
If one or more of the above statements are "false", this input node value or entered numeric value will be given out as output value.
With Widget Designer version 6, all nodes support so called node commands. Node commands access functions (i.e methods) from a node and / or set a parameter (i.e. property).
Enter "node", followed by the according ID and a dot and a list will pop up showing all available commands for the node. For instance, Node1.TintColor.SetRGB(125,0,255), colors the node in purple.
In addition, the node properties with a parameter ID (the small superscript number) can be edited via the command Node1.SetParam(ID,new Value) or WDNodeSetParam(NodeID,ParamID,Value).
The Node generates the following output:
- Output Value
- Output State
1 = True: All conditions must be true
0 = False: When at least one of the conditions is not true, the output state is false.