コード例 #1
0
ファイル: Signal.cs プロジェクト: BrodigganGale/Kerbalism
 // return true if vessel is inside a magnetosphere and there is a storm in progress
 public static bool Blackout(Vessel v)
 {
     return(Storm.InProgress(v.mainBody) && Radiation.InsideMagnetosphere(v));
 }