Skip to content

Commit

Permalink
change default height above atmosphere orbit to be 5000 instead of 20000
Browse files Browse the repository at this point in the history
if we already tell the user what the minimum value is, then we dont need to set them so high above the atmosphere, as this could just be confusing. 5000 is more than high enough to counteract principia shenanigans, while still allowing the user to be in a low orbit by default
  • Loading branch information
Clayell authored Feb 7, 2025
1 parent 69ebcd8 commit 55d2e38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/RP0/UI/KCT/GUI_Simulation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private static double EnsureSafeMaxAltitude(double altitudeMeters, CelestialBody

private static double GetDefaultAltitudeForBody(CelestialBody body)
{
return body.atmosphere ? body.atmosphereDepth + 20010 : 20000;
return body.atmosphere ? body.atmosphereDepth + 5000 : 20000;
}
}
}

0 comments on commit 55d2e38

Please sign in to comment.