Skip to content

Commit 0959618

Browse files
style
arrg... lists! PVP!
1 parent 1f54905 commit 0959618

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

com.unity.netcode.gameobjects/Runtime/Components/NetworkTransform.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -988,11 +988,6 @@ public enum InterpolationTypes
988988
/// <list type="bullet">
989989
/// <item><description>The first phase lerps towards the current tick state update being processed.</description></item>
990990
/// <item><description>The second phase lerps unclamped (extrapolates) towards the current tick state update and will extrapolate this value up to a calculated maximum state update delta time.</description></item>
991-
/// <item>
992-
/// <list type="bullet">
993-
/// <item><description>The maximum state update time is based on <see cref="NetworkTimeSystem.TickLatency"/> plus the <see cref="InterpolationBufferTickOffset"/>. The sum is multiplied by the tick frequency (one over tick rate).</description></item>
994-
/// </list>
995-
/// </item>
996991
/// <item><description>The third phase lerps between the results of the first and second phases by the current delta time.</description></item>
997992
/// <item><description>The fourth phase (optional) performs lerp smoothing where the current respective transform value is lerped towards the result of the third phase at a rate of delta time divided by the respective max interpolation time.</description></item>
998993
/// </list>
@@ -1044,6 +1039,7 @@ public enum InterpolationTypes
10441039
/// <item><term><see cref="InterpolationTypes.Lerp"/></term><description>Yields a traditional linear result.</description></item>
10451040
/// <item><term><see cref="InterpolationTypes.LerpExtrapolateBlend"/></term><description>Lerps, extrapolates, and blends the results.</description></item>
10461041
/// <item><term><see cref="InterpolationTypes.SmoothDampening"/></term><description>Adjusts based on the rate of change.</description></item>
1042+
/// </list>
10471043
/// Things to consider:<br />
10481044
/// <list type="bullet">
10491045
/// <item><description>You can have mixed interpolation types between position, rotation, and scale on the same <see cref="NetworkTransform"/> instance.</description></item>
@@ -1062,6 +1058,7 @@ public enum InterpolationTypes
10621058
/// <item><term><see cref="InterpolationTypes.Lerp"/></term><description>Yields a traditional linear result.</description></item>
10631059
/// <item><term><see cref="InterpolationTypes.LerpExtrapolateBlend"/></term><description>Lerps, extrapolates, and blends the results.</description></item>
10641060
/// <item><term><see cref="InterpolationTypes.SmoothDampening"/></term><description>Adjusts based on the rate of change.</description></item>
1061+
/// </list>
10651062
/// Things to consider:<br />
10661063
/// <list type="bullet">
10671064
/// <item><description>You can have mixed interpolation types between position, rotation, and scale on the same <see cref="NetworkTransform"/> instance.</description></item>
@@ -1080,6 +1077,7 @@ public enum InterpolationTypes
10801077
/// <item><term><see cref="InterpolationTypes.Lerp"/></term><description>Yields a traditional linear result.</description></item>
10811078
/// <item><term><see cref="InterpolationTypes.LerpExtrapolateBlend"/></term><description>Lerps, extrapolates, and blends the results.</description></item>
10821079
/// <item><term><see cref="InterpolationTypes.SmoothDampening"/></term><description>Adjusts based on the rate of change.</description></item>
1080+
/// </list>
10831081
/// Things to consider:<br />
10841082
/// <list type="bullet">
10851083
/// <item><description>You can have mixed interpolation types between position, rotation, and scale on the same <see cref="NetworkTransform"/> instance.</description></item>
@@ -1558,6 +1556,7 @@ internal bool SynchronizeScale
15581556
/// </item>
15591557
/// </list>
15601558
/// </item>
1559+
/// </list>
15611560
/// </param>
15621561
/// <returns><see cref="Vector3"/></returns>
15631562
[MethodImpl(MethodImplOptions.AggressiveInlining)]

0 commit comments

Comments
 (0)