Exemple #1
0
 /// <summary> Sets the comms Blackout state for the vessel</summary>
 public static void SetCommsBlackout(Guid id, bool flag)
 {
     if (RT_API != null && SetRadioBlackout != null)
     {
         SetRadioBlackout.Invoke(null, new Object[] { id, flag, "Kerbalism" });
     }
 }
Exemple #2
0
 public static void SetCommsBlackout(Guid id, bool flag, string origin)
 {
     if (API != null && SetRadioBlackout != null)
     {
         SetRadioBlackout.Invoke(null, new Object[] { id, flag, origin });
     }
 }