Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

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

NetworkClient.Connect

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public function Connect(serverIp: string, serverPort: int): void;
public void Connect(string serverIp, int serverPort);

Parameters

serverIp Target IP address or hostname.
serverPort Target port number.

Description

Connect client to a NetworkServer instance.

Connecting to a server is asynchronous. There is connection message that is fired when the client connects. If the connection fails, a MsgType.SYSTEM_ERROR message will be generated. Once a connection is established you are able to send messages on the connection using NetworkClient.Send(). If using other features of the high level api, the client should call NetworkClient.IsReady() once it is ready to participate in the game. At that point the client will be sent spawned objects and state update messages.

#pragma strict
public class NetClient {
	var myClient: NetworkClient;
	public function OnConnected(conn: NetworkConnection, reader: NetworkReader) {
		Debug.Log("Connected to server");
		myClient.Ready();
	}
	public function OnDisconnected(conn: NetworkConnection, reader: NetworkReader) {
		Debug.Log("Disconnected from server");
	}
	public function OnError(conn: NetworkConnection, reader: NetworkReader) {
		var errorMsg: SystemErrorMessage = reader.SmartRead.<SystemErrorMessage>();
		Debug.Log("Error connecting with code " + errorMsg.errorCode);
	}
	public function Start() {
		myClient = NetworkClient.Instance;
		myClient.RegisterHandler(MsgType.SYSTEM_CONNECT, OnConnected);
		myClient.RegisterHandler(MsgType.SYSTEM_DISCONNECT, OnDisconnected);
		myClient.RegisterHandler(MsgType.SYSTEM_ERROR, OnError);
		myClient.Connect("127.0.0.1", 8888);
	}
}
using UnityEngine;
using UnityEngine.Networking;

public class NetClient { NetworkClient myClient;

public void OnConnected(NetworkConnection conn, NetworkReader reader) { Debug.Log("Connected to server"); myClient.Ready(); }

public void OnDisconnected(NetworkConnection conn, NetworkReader reader) { Debug.Log("Disconnected from server"); }

public void OnError(NetworkConnection conn, NetworkReader reader) { SystemErrorMessage errorMsg = reader.SmartRead<SystemErrorMessage>(); Debug.Log("Error connecting with code " + errorMsg.errorCode); }

public void Start() { myClient = NetworkClient.Instance;

myClient.RegisterHandler(MsgType.SYSTEM_CONNECT, OnConnected); myClient.RegisterHandler(MsgType.SYSTEM_DISCONNECT, OnDisconnected); myClient.RegisterHandler(MsgType.SYSTEM_ERROR, OnError);

myClient.Connect("127.0.0.1", 8888); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961