Greater - >

Logical nodes

Condition
Value
Greater - Double > Int default node

The "Greater >" node is a logical node where we look for the result if item1 is greater than item2. If item1 is greater than item2, true is returned. If they are equal or item2 is greater than item1, false is returned.

items
result

item1 is greater than item2

true

item1 is equal to item2

false

item1 is less than item2

false

The "greater" node has multiple variations depending on the type as shown in the table below:

item1
item2
Node

Double

Double

Greater - Double > Double

Double

Int

Greater - Double > Int

Int

Int

Greater - Int > Int

Inputs

Input Name
Canvas Required
Type
Description

item1

Depends on the node

Condition 1

item2

Depends on the node

Condition 2

Outputs

Output Name
Canvas Required
Type
Description

result

Bool

Result from applying the > operator to "item1" and "item2" inputs

Last updated