Unity - Scripting API: D3D12Comparator
enumeration
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Description
The comparison operator to be used.
Specifies, which comparison operator to use when testing values against each other.
Properties
| Property | Description |
|---|---|
| EqualTo | The operator tests if two values are equal. |
| NotEqualTo | The operator tests if two values are not equal. |
| LessThan | The operator tests if a specified value is less than the reference value. |
| LessThanOrEqualTo | The operator tests if a specified value is less than or equal to the reference value. |
| GreaterThan | The operator tests if a specified value is greater than the reference value. |
| GreaterThanOrEqualTo | The operator tests if a specified value is greater than or equal to the reference value. |