Skip to content

Commit fc93b0e

Browse files
had the assert message backwards
1 parent fa8b577 commit fc93b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/MixedRealityToolkit/InputSystem/Gaze/GazeProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public override bool TryGetPointerRotation(out Quaternion rotation)
221221

222222
private void OnValidate()
223223
{
224-
Debug.Assert(minHeadVelocityThreshold < maxHeadVelocityThreshold, "Maximum head velocity threshold should be less than the minimum velocity threshold.");
224+
Debug.Assert(minHeadVelocityThreshold < maxHeadVelocityThreshold, "Minimum head velocity threshold should be less than the maximum velocity threshold.");
225225
}
226226

227227
protected virtual void OnEnable()

0 commit comments

Comments
 (0)