Skip to content
Open
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
5 changes: 1 addition & 4 deletions src/CelestialBody.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,6 @@ public class CelestialBody /*: MonoBehaviour, ITargetable, IDiscoverable*/
public extern int flightGlobalsIndex { get; set; }
public extern string name { get; }
/// <summary>
/// Describes the orbit of this body around its primary.
/// </summary>
public extern Orbit orbit { get; }
/// <summary>
/// The position of the center of the body, in world coordinates.
/// </summary>
public extern Vector3d position { get; set; }
Expand Down Expand Up @@ -188,6 +184,7 @@ public class CelestialBody /*: MonoBehaviour, ITargetable, IDiscoverable*/
public extern double GetLongitude(Vector3d worldPos);
public extern string GetName();
public extern Vector3 GetObtVelocity();
/// <summary>Obsolete function that throws a NullReferenceException when called. Use GetOrbitDriver() instead.</summary>
public extern Orbit GetOrbit();
public extern OrbitDriver GetOrbitDriver();
public extern Vector3d getPositionAtUT(double UT);
Expand Down