public static void DisconnectAll ();

설명

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