Enum ConditionOperator
Represents the different operators that can be used to compare values.
Namespace: Unity.Muse.Behavior
Assembly: Unity.Muse.Behavior.dll
Syntax
public enum ConditionOperator
Fields
Name | Description |
---|---|
Equal | Compare the values for equality. |
Greater | Compare the values for greater than. |
GreaterOrEqual | Compare the values for greater than or equal. |
Lower | Compare the values for less than. |
LowerOrEqual | Compare the values for less than or equal. |
NotEqual | Compare the values for inequality. |