Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

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

Network.peerType

Switch to Manual
public static var peerType: NetworkPeerType;

Description

The status of the peer type, i.e. if it is disconnected, connecting, server or client.

	function OnGUI() {
		if (Network.peerType == NetworkPeerType.Disconnected)
			GUILayout.Label("Not Connected");
		else if (Network.peerType == NetworkPeerType.Connecting)
			GUILayout.Label("Connecting");
		else
			GUILayout.Label("Network started");
	}