Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseRemove 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); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def OnPlayerDisconnected(player as NetworkPlayer) as void: 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.