Version: 2017.3

NetworkMigrationManager.ReconnectPlayerForConnection

매뉴얼로 전환
public bool ReconnectPlayerForConnection (Networking.NetworkConnection newConnection, GameObject oldPlayer, int oldConnectionId, short playerControllerId);

파라미터

newConnection The connection of the new client.
oldPlayer The player object.
oldConnectionId This client's connectionId on the old host.
playerControllerId The playerControllerId of the player that is rejoining.

반환

bool True if able to re-add this player.

설명

This re-establishes a player object with a client that is reconnected. It is similar to NetworkServer.AddPlayerForConnection(). The player game object will become the player object for the new connection.

This is called by the default implementation of OnServerReconnectPlayer.

using UnityEngine;
using UnityEngine.Networking;

class MyMigrationManager : NetworkMigrationManager { protected override void OnServerReconnectPlayer(NetworkConnection newConnection, GameObject oldPlayer, int oldConnectionId, short playerControllerId) { Debug.Log("Reconnecting oldPlayer:" + oldPlayer); ReconnectPlayerForConnection(newConnection, oldPlayer, oldConnectionId, playerControllerId); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961