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
Assert.False(s_GloabalTimeoutHelper.TimedOut,$"{nameof(TrackRttMetricServerToClient)} timed out waiting for metric to be found for {m_ClientCount} clients!");
68
+
Assert.False(s_GlobalTimeoutHelper.TimedOut,$"{nameof(TrackRttMetricServerToClient)} timed out waiting for metric to be found for {m_ClientCount} clients!");
Assert.False(s_GloabalTimeoutHelper.TimedOut,$"{nameof(TrackRttMetricClientToServer)} timed out waiting for metric to be found for {m_ClientCount} clients!");
90
+
Assert.False(s_GlobalTimeoutHelper.TimedOut,$"{nameof(TrackRttMetricClientToServer)} timed out waiting for metric to be found for {m_ClientCount} clients!");
Assert.IsFalse(s_GloabalTimeoutHelper.TimedOut,$"Timed out waiting for client side NetVarContainers to report all NetworkVariables have been updated!");
338
+
Assert.IsFalse(s_GlobalTimeoutHelper.TimedOut,$"Timed out waiting for client side NetVarContainers to report all NetworkVariables have been updated!");
Assert.False(s_GloabalTimeoutHelper.TimedOut,$"timeout while waiting for position change! Otherside value {otherSideNetworkTransform.transform.position.x} vs. Approximation {approximation}");
118
+
Assert.False(s_GlobalTimeoutHelper.TimedOut,$"timeout while waiting for position change! Otherside value {otherSideNetworkTransform.transform.position.x} vs. Approximation {approximation}");
119
119
120
120
Assert.True(newVector3(10,20,30)==otherSideNetworkTransform.transform.position,$"wrong position on ghost, {otherSideNetworkTransform.transform.position}");// Vector3 already does float approximation with ==
121
121
@@ -125,7 +125,7 @@ public IEnumerator TestAuthoritativeTransformChangeOneAtATime([Values] bool test
Assert.False(s_GloabalTimeoutHelper.TimedOut,"timeout while waiting for rotation change");
128
+
Assert.False(s_GlobalTimeoutHelper.TimedOut,"timeout while waiting for rotation change");
129
129
130
130
// approximation needed here since eulerAngles isn't super precise.
131
131
Assert.LessOrEqual(Math.Abs(45-otherSideNetworkTransform.transform.rotation.eulerAngles.x),approximation,$"wrong rotation on ghost on x, got {otherSideNetworkTransform.transform.rotation.eulerAngles.x}");
@@ -140,7 +140,7 @@ public IEnumerator TestAuthoritativeTransformChangeOneAtATime([Values] bool test
0 commit comments