Class ComparisonFunc
Comparison function modes
Inheritance
System.Object
ComparisonFunc
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class ComparisonFunc : Enum
Fields
Always
Always pass the comparison.
Declaration
public const ComparisonFunc Always
Field Value
ComparisonFunc
|
Equal
If the source data is equal to the destination data, the comparison passes.
Declaration
public const ComparisonFunc Equal
Field Value
ComparisonFunc
|
Greater
If the source data is greater than the destination data, the comparison passes.
Declaration
public const ComparisonFunc Greater
Field Value
ComparisonFunc
|
GreaterEqual
If the source data is greater than or equal to the destination data, the comparison passes.
Declaration
public const ComparisonFunc GreaterEqual
Field Value
ComparisonFunc
|
Less
If the source data is less than the destination data, the comparison passes.
Declaration
public const ComparisonFunc Less
Field Value
ComparisonFunc
|
LessEqual
If the source data is less than or equal to the destination data, the comparison passes.
Declaration
public const ComparisonFunc LessEqual
Field Value
ComparisonFunc
|
Never
NotEqual
If the source data is not equal to the destination data, the comparison passes.
Declaration
public const ComparisonFunc NotEqual
Field Value
ComparisonFunc
|
value__
Declaration
public byte value__
Field Value
System.Byte
|