Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GameData/JSI/RPMPodPatches/BasicMFD/MFD40x20.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ PROP
text = MechJeb software not installed.
PAGEHANDLER:NEEDS[MechJeb2]
{
name = MechJebRPM
name = MechJebRPMMenu
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like you created a new page handler (MechJebRPMMenu). Is there any reason to keep the old one around?

method = ShowMenu
pageActiveMethod = PageActive
buttonClickMethod = ClickProcessor
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion RasterPropMonitor/Auxiliary modules/JSINumericInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

namespace JSI
{
class JSINumericInput : InternalModule
public class JSINumericInput : InternalModule
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are these changes needed or related at all?

{
[SerializeReference] ConfigNodeHolder moduleConfig;

Expand Down
2 changes: 0 additions & 2 deletions RasterPropMonitor/Core/OrbitExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ public static double RelativeInclination_DEG(this Orbit a, Orbit b)
// note strangely, the stock RelativeInclination function is already in degrees
return Orbit.RelativeInclination(a, b);
}
#if false

// These "Swapped" functions translate preexisting Orbit class functions into world
// space. For some reason, Orbit class functions seem to use a coordinate system
Expand Down Expand Up @@ -450,6 +449,5 @@ public static Vector3d DeltaVToManeuverNodeCoordinates(this Orbit o, double UT,
Vector3d.Dot(-o.NormalPlus(UT), dV),
Vector3d.Dot(o.Prograde(UT), dV));
}
#endif
}
}
2 changes: 1 addition & 1 deletion RasterPropMonitor/Handlers/JSIGraphingBackground.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace JSI
{
// JSIGraphingBackground provides an editable / configurable way to render
// one or more data in a graphical manner.
class JSIGraphingBackground : InternalModule
public class JSIGraphingBackground : InternalModule
{
[KSPField]
public string layout = null;
Expand Down
2 changes: 1 addition & 1 deletion RasterPropMonitor/Handlers/JSIHeadsUpDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace JSI
* are displayed with a "ladder" (texture). Strips also provide heading
* information.
************************************************************************/
class JSIHeadsUpDisplay : InternalModule
public class JSIHeadsUpDisplay : InternalModule
{
[KSPField]
public string cameraTransform = string.Empty;
Expand Down
281 changes: 175 additions & 106 deletions RasterPropMonitor/Handlers/JSIMechJeb.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion RasterPropMonitor/Handlers/JSISASMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private static VesselAutopilot.AutopilotMode ConvertMode(VesselAutopilot.Autopil
}
}

class JSISASMenu : InternalModule
public class JSISASMenu : InternalModule
{
[KSPField]
public string pageTitle = string.Empty;
Expand Down
6 changes: 3 additions & 3 deletions RasterPropMonitor/Handlers/JSIScienceDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
using System.Text;
using UnityEngine;

namespace JSI.Handlers
namespace JSI
{
class ExperimentDetailsMenu : TextMenu
public class ExperimentDetailsMenu : TextMenu
{
public ExperimentDetailsMenu(ModuleScienceExperiment experimentModule)
{
Expand Down Expand Up @@ -103,7 +103,7 @@ static void AddMessageChunk(string message, StringBuilder stringBuilder, ref int
}
}

class JSIScienceDisplay : InternalModule
public class JSIScienceDisplay : InternalModule
{
[KSPField]
public string pageTitle;
Expand Down
Loading
Loading