Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Network.GetLastPing

public static function GetLastPing(player: NetworkPlayer): int;

Description

The last 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.

	function OnGUI() {
		GUILayout.Label("Player ping values");
		for (var i : int = 0; i < Network.connections.Length; i++) {
			GUILayout.Label("Player " + 
				Network.connections[i] + " - " + 
				Network.GetLastPing(Network.connections[i]) + " ms");
		}
	}