You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: com.unity.netcode.gameobjects/Runtime/Components/NetworkTransform.cs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -998,43 +998,43 @@ public enum InterpolationTypes
998
998
999
999
/// <summary>
1000
1000
/// The position interoplation time divisor applied to the current delta time (dividend) where the quotient yields the time used for the second smoothing lerp.
1001
-
/// - The lower the value the smoother, but can result in lost data points (i.e. quick changes in direct). <br />
1002
-
/// - The higher the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value). <br />
1001
+
/// - The higher the value the smoother, but can result in lost data points (i.e. quick changes in direct). <br />
1002
+
/// - The lower the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value). <br />
1003
1003
/// - This value can be adjusted during runtime in the event you want to dynamically adjust it based on some other value (i.e. velocity or the like).
1004
1004
/// </summary>
1005
1005
/// <remarks>
1006
1006
/// - Only used When <see cref="Interpolate"/> is enabled and using <see cref="InterpolationTypes.Lerp"/>. <br />
1007
1007
/// - The quotient will be clamped to a value that ranges from 1.0f to the current delta time (i.e. <see cref="Time.deltaTime"/> or <see cref="Time.fixedDeltaTime"/>)
1008
1008
/// </remarks>
1009
-
[Tooltip("The lower the value the smoother, but can result in lost data points (i.e. quick changes in direct). The higher the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value).")]
1009
+
[Tooltip("The higher the value the smoother, but can result in lost data points (i.e. quick changes in direct). The lower the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value).")]
1010
1010
[Range(0.01f,1.0f)]
1011
1011
publicfloatPositionMaxInterpolationTime=0.1f;
1012
1012
1013
1013
/// <summary>
1014
1014
/// The rotation interoplation time divisor applied to the current delta time (dividend) where the quotient yields the time used for the second smoothing lerp.
1015
-
/// - The lower the value the smoother, but can result in lost data points (i.e. quick changes in direct). <br />
1016
-
/// - The higher the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value). <br />
1015
+
/// - The higher the value the smoother, but can result in lost data points (i.e. quick changes in direct). <br />
1016
+
/// - The lower the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value). <br />
1017
1017
/// - This value can be adjusted during runtime in the event you want to dynamically adjust it based on some other value (i.e. velocity or the like).
1018
1018
/// </summary>
1019
1019
/// <remarks>
1020
1020
/// - Only used When <see cref="Interpolate"/> is enabled and using <see cref="InterpolationTypes.Lerp"/>. <br />
1021
1021
/// - The quotient will be clamped to a value that ranges from 1.0f to the current delta time (i.e. <see cref="Time.deltaTime"/> or <see cref="Time.fixedDeltaTime"/>)
1022
1022
/// </remarks>
1023
-
[Tooltip("The lower the value the smoother, but can result in lost data points (i.e. quick changes in direct). The higher the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value).")]
1023
+
[Tooltip("The higher the value the smoother, but can result in lost data points (i.e. quick changes in direct). The lower the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value).")]
1024
1024
[Range(0.01f,1.0f)]
1025
1025
publicfloatRotationMaxInterpolationTime=0.1f;
1026
1026
1027
1027
/// <summary>
1028
1028
/// The scale interoplation time divisor applied to the current delta time (dividend) where the quotient yields the time used for the second smoothing lerp.
1029
-
/// - The lower the value the smoother, but can result in lost data points (i.e. quick changes in direct). <br />
1030
-
/// - The higher the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value). <br />
1029
+
/// - The higher the value the smoother, but can result in lost data points (i.e. quick changes in direct). <br />
1030
+
/// - The lower the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value). <br />
1031
1031
/// - This value can be adjusted during runtime in the event you want to dynamically adjust it based on some other value (i.e. velocity or the like).
1032
1032
/// </summary>
1033
1033
/// <remarks>
1034
1034
/// - Only used When <see cref="Interpolate"/> is enabled and using <see cref="InterpolationTypes.Lerp"/>. <br />
1035
1035
/// - The quotient will be clamped to a value that ranges from 1.0f to the current delta time (i.e. <see cref="Time.deltaTime"/> or <see cref="Time.fixedDeltaTime"/>)
1036
1036
/// </remarks>
1037
-
[Tooltip("The lower the value the smoother, but can result in lost data points (i.e. quick changes in direct). The higher the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value).")]
1037
+
[Tooltip("The higher the value the smoother, but can result in lost data points (i.e. quick changes in direct). The lower the value the more accurate/precise, but can result in slight stutter (i.e. due to jitter, latency, or a high threshold value).")]
0 commit comments