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; /// /// Colour of the dust tail (the shorter part) /// public MColor dustTint; /// /// Colour of the gas tail (the longer part) /// public MColor gasTint; } }