Greater Than

The greater-than operation (>) compares two values and returns true if the first value is greater than the second, or false if it is not. If enabled with Or Equal, the greater-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 greater-than-or-equal operation (>=) instead of the greater-than operation (>).

Default: false

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

bool