Enum VisualShaderNodeCompare.Function
enum Function
: int { ... }
Enum members
Name | Description |
funcEqual
|
Comparison for equality (a == b ).
|
funcGreaterThan
|
Comparison for greater than (a > b ). Cannot be used if type set to constant CTYPE_BOOLEAN or constant CTYPE_TRANSFORM .
|
funcGreaterThanEqual
|
Comparison for greater than or equal (a >= b ). Cannot be used if type set to constant CTYPE_BOOLEAN or constant CTYPE_TRANSFORM .
|
funcLessThan
|
Comparison for less than (a < b ). Cannot be used if type set to constant CTYPE_BOOLEAN or constant CTYPE_TRANSFORM .
|
funcLessThanEqual
|
Comparison for less than or equal (a < b ). Cannot be used if type set to constant CTYPE_BOOLEAN or constant CTYPE_TRANSFORM .
|
funcNotEqual
|
Comparison for inequality (a != b ).
|