Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#
Method group is Obsolete

NetworkServer.DisconnectAll

Obsolete public static void DisconnectAll();

Description

Disconnect all currently connected clients.

This can only be called on the server. Clients will receive the Disconnect message.

using UnityEngine;
using UnityEngine.Networking;

public class Example : MonoBehaviour { enum GameState { kInit, kStart } GameState state;

public void Update() { if (state != GameState.kInit) { if (Input.GetKey(KeyCode.Escape)) { Debug.Log("Disconnecting all!"); NetworkServer.DisconnectAll(); Application.LoadLevel("empty"); state = GameState.kStart; } } } }

Did you find this page useful? Please give it a rating: