using NewHorizons.External.Modules.VariableSize; using NewHorizons.External.SerializableData; using Newtonsoft.Json; namespace NewHorizons.External.Modules { [JsonObject] public class CometTailModule : VariableSizeModule { /// /// Manually sets the local rotation /// public MVector3 rotationOverride; /// /// Inner radius of the comet tail, defaults to match surfaceSize /// public float? innerRadius; /// /// The body that the comet tail should always point away from /// public string primaryBody; } }