UnityEngine.Network.Internal_RemoveRPCs C# (CSharp) Method

Internal_RemoveRPCs() private static method

private static Internal_RemoveRPCs ( NetworkPlayer playerID, NetworkViewID viewID, uint channelMask ) : void
playerID NetworkPlayer
viewID NetworkViewID
channelMask uint
return void
        private static void Internal_RemoveRPCs(NetworkPlayer playerID, NetworkViewID viewID, uint channelMask)
        {
            INTERNAL_CALL_Internal_RemoveRPCs(ref playerID, ref viewID, channelMask);
        }

Usage Example

コード例 #1
0
 /// <summary>
 ///   <para>Remove all RPC functions which belong to given group number.</para>
 /// </summary>
 /// <param name="group"></param>
 public static void RemoveRPCsInGroup(int group)
 {
     Network.Internal_RemoveRPCs(NetworkPlayer.unassigned, NetworkViewID.unassigned, 1u << group);
 }
All Usage Examples Of UnityEngine.Network::Internal_RemoveRPCs