言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Network.RemoveRPCs

public static function RemoveRPCs(playerID: NetworkPlayer): void;

Description

対象のプレイヤーのIDに属している、すべてのRPC関数を削除します

	function OnPlayerDisconnected(player: NetworkPlayer) {
		Debug.Log("Clean up after player " +  player);
		Network.RemoveRPCs(player);
		Network.DestroyPlayerObjects(player);
	}
public static function RemoveRPCs(playerID: NetworkPlayer, group: int): void;

Description

Remove all RPC functions which belong to this player ID and were sent based on the given group.

public static function RemoveRPCs(viewID: NetworkViewID): void;

Description

Remove the RPC function calls accociated with this view ID number.