-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSolarExperiment.cs
28 lines (25 loc) · 950 Bytes
/
SolarExperiment.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//Make sure we're using all available stuff
using System;
using UnityEngine;
namespace PraiseTheSun
{
//Inherit ModuleScienceExperiment stuff
public class SolarExperiment : ModuleScienceExperiment{
// Check if you're around the Sun and height from the surface, and if false post the message
public bool checkBody() {
if (vessel.mainBody.name == "Sun" && vessel.mainBody.GetAltitude (vessel.CoM) <= 10000000000d)
return true;
ScreenMessages.PostScreenMessage("This experiment only operates closely around Kerbol (the Sun) !", 3, ScreenMessageStyle.UPPER_CENTER);
return false;
}
// If deploying an Experiment, check the boolean and act accordingly
new public void DeployExperiment() {
if(checkBody())
base.DeployExperiment();
}
// If doing an action, check the boolean and act accordingly
new public void DeployAction(KSPActionParam p) {
if(checkBody())
base.DeployAction(p);
}
}}