Remove all RPC functions which belong to this player ID.
function OnPlayerDisconnected(player: NetworkPlayer) {
Debug.Log("Clean up after player " + player);
Network.RemoveRPCs(player);
Network.DestroyPlayerObjects(player);
}
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnPlayerDisconnected(NetworkPlayer player) { Debug.Log("Clean up after player " + player); Network.RemoveRPCs(player); Network.DestroyPlayerObjects(player); } }
Remove all RPC functions which belong to this player ID and were sent based on the given group.
Remove the RPC function calls accociated with this view ID number.