We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a983537 commit faa53b6Copy full SHA for faa53b6
1 file changed
com.unity.multiplayer.mlapi/Runtime/Core/NetworkTickSystem.cs
@@ -5,8 +5,8 @@ namespace MLAPI
5
{
6
public class NetworkTickSystem : INetworkUpdateSystem, IDisposable
7
8
- private const float k_DefaultTickDuration = 1/60f; // Default to 60 FPS
9
- private float m_TickInterval; //Duration of a tick
+ private const float k_DefaultTickIntervalMs = 1/60f; // Default to 60 ticks per second
+ private float m_TickIntervalMs; // Milliseconds duration of an interval between ticks
10
private int m_NetworkTickCount; //How many network ticks have passed?
11
12
private static NetworkTickSystem m_Instance = null;
0 commit comments