We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d54397d + f86dece commit f87b56fCopy full SHA for f87b56f
1 file changed
BindingsFlightControl.cs
@@ -136,6 +136,10 @@ public void OnFlyByWire(ref FlightCtrlState c)
136
{
137
bearing = ((GeoCoordinates)Value).GetBearing(vessel);
138
}
139
+ else if (Value is double)
140
+ {
141
+ bearing = (float)(Math.Round((double)Value) - Mathf.Round(FlightGlobals.ship_heading));
142
+ }
143
144
if (vessel.horizontalSrfSpeed > 0.1f)
145
0 commit comments