The less-than operation (<) compares two values and returns true if the first value is less than the second, or false if it is not. If enabled with Or Equal, the less-than-or-equal operation (<=) is used instead.
Interface
Inputs
| Parameter | Details | Possible Types |
|---|---|---|
| Value | The number on the left-hand side of the comparison. Primary Input | f32f64u32 |
| Other Value | The number on the right-hand side of the comparison. Default: | f32f64u32 |
| Or Equal | Uses the less-than-or-equal operation ( Default: | bool |
Outputs
| Product | Details | Possible Types |
|---|---|---|
| Result | The value produced by the node operation. Primary Output | bool |