Skip to content

Commit 7b770a4

Browse files
fix
Missed two PVP issues.
1 parent e1f6763 commit 7b770a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

com.unity.netcode.gameobjects/Runtime/Components/Interpolator/BufferedLinearInterpolatorQuaternion.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ protected internal override Quaternion SmoothDamp(Quaternion current, Quaternion
6060
return Quaternion.Euler(currentEuler);
6161
}
6262

63+
/// <inheritdoc />
6364
protected internal override bool IsAproximately(Quaternion first, Quaternion second, float precision)
6465
{
6566
return Mathf.Abs(first.x - second.x) <= precision &&
@@ -68,6 +69,7 @@ protected internal override bool IsAproximately(Quaternion first, Quaternion sec
6869
Mathf.Abs(first.w - second.w) <= precision;
6970
}
7071

72+
/// <inheritdoc />
7173
protected internal override Quaternion OnConvertTransformSpace(Transform transform, Quaternion rotation, bool inLocalSpace)
7274
{
7375
if (inLocalSpace)

0 commit comments

Comments
 (0)