mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-10 06:34:16 +00:00
add "Diff between network times" to NET stats
This commit is contained in:
parent
0eab81d717
commit
1480804c24
1 changed files with 3 additions and 2 deletions
|
@ -21,6 +21,7 @@ namespace SanAndreasUnity.Stats
|
|||
|
||||
AddTimeSpan(sb, "Network time", NetworkTime.time);
|
||||
AddTimeSpan(sb, "Local network time", NetworkTime.localTime);
|
||||
AddTimeSpan(sb, "Diff between network times", NetworkTime.time - NetworkTime.localTime, true);
|
||||
|
||||
if (NetStatus.IsServer)
|
||||
{
|
||||
|
@ -45,9 +46,9 @@ namespace SanAndreasUnity.Stats
|
|||
sb.AppendLine($"Num spawned network objects: {NetManager.NumSpawnedNetworkObjects}");
|
||||
}
|
||||
|
||||
private static void AddTimeSpan(System.Text.StringBuilder sb, string text, double seconds)
|
||||
private static void AddTimeSpan(System.Text.StringBuilder sb, string text, double seconds, bool useMilliseconds = false)
|
||||
{
|
||||
sb.AppendLine($"{text}: {F.FormatElapsedTime(seconds)}");
|
||||
sb.AppendLine($"{text}: {F.FormatElapsedTime(seconds, useMilliseconds)}");
|
||||
}
|
||||
|
||||
private static void AddAsMs(System.Text.StringBuilder sb, string text, double seconds)
|
||||
|
|
Loading…
Reference in a new issue