SetReceivingEnabled() public method

public SetReceivingEnabled ( int group, bool enabled ) : void
group int
enabled bool
return void
Ejemplo n.º 1
0
 public static void SetReceivingEnabled(int group, bool enabled)
 {
     if (VerifyCanUseNetwork())
     {
         networkingPeer.SetReceivingEnabled(group, enabled);
     }
 }
Ejemplo n.º 2
0
 public static void SetReceivingEnabled(int[] enableGroups, int[] disableGroups)
 {
     if (VerifyCanUseNetwork())
     {
         networkingPeer.SetReceivingEnabled(enableGroups, disableGroups);
     }
 }