Version: 2017.3

Network.CloseConnection

Cambiar al Manual
public static void CloseConnection (NetworkPlayer target, bool sendDisconnectionNotification);

Descripción

Cierra la conexión con otro sistema.

target defines which system to close the connection to. If we are a client the only possible connection to close is the server connection, if we are a server the target player will be kicked off. sendDisconnectionNotification, enables or disables notifications being sent to the other end. If disabled the connection is dropped, if not a disconnect notification is reliably sent to the remote party and there after the connection is dropped.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { if (GUILayout.Button("Disconnect from server")) if (Network.connections.Length == 1) { Debug.Log("Disconnecting: " + Network.connections[0].ipAddress + ":" + Network.connections[0].port); Network.CloseConnection(Network.connections[0], true); } else if (Network.connections.Length == 0) Debug.Log("No one is connected"); else if (Network.connections.Length > 1) Debug.Log("Too many connections. Are we running a server?"); if (GUILayout.Button("Disconnect first player")) if (Network.connections.Length > 0) { Debug.Log("Disconnecting: " + Network.connections[0].ipAddress + ":" + Network.connections[0].port); Network.CloseConnection(Network.connections[0], true); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961