Version: 2017.1

Network.GetAveragePing

Switch to Manual
public static int GetAveragePing (NetworkPlayer player);

Description

The last average ping time to the given player in milliseconds.

If the player can't be found -1 will be returned. Pings are automatically sent out every couple of seconds.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { GUILayout.Label("Player ping values"); int i = 0; while (i < Network.connections.Length) { GUILayout.Label("Player " + Network.connections[i] + " - " + Network.GetAveragePing(Network.connections[i]) + " ms"); i++; } } }