mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
20 lines
548 B
C#
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;
|
|
}
|
|
}
|