Less Than

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

ParameterDetailsPossible Types
Value

The number on the left-hand side of the comparison.

Primary Input

f32
f64
u32
Other Value

The number on the right-hand side of the comparison.

Default: 0

f32
f64
u32
Or Equal

Uses the less-than-or-equal operation (<=) instead of the less-than operation (<).

Default: false

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

bool