new-horizons/NewHorizons/External/Modules/WarpPad/NomaiWarpTransmitterInfo.cs
2023-03-23 17:33:33 -07:00

20 lines
548 B
C#

using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Modules.WarpPad
{
[JsonObject]
public class NomaiWarpTransmitterInfo : NomaiWarpPadInfo
{
/// <summary>
/// In degrees. Gives a margin of error for alignments.
/// </summary>
[DefaultValue(5f)] public float alignmentWindow = 5f;
/// <summary>
/// This makes the alignment happen if the destination planet is BELOW you rather than above.
/// </summary>
public bool flipAlignment;
}
}