1
0
Fork 0

FG1000: Fix slip/skid indicator

Was showing the wrong direction and insufficiently sensitive.
Thanks to dany for the fix.
This commit is contained in:
Stuart Buchanan 2023-09-02 20:18:22 +01:00
parent b5d6a5b8ed
commit e7ae33b323

View file

@ -347,7 +347,7 @@ var PFDInstruments =
me.getElement("bankPointer")
.setRotation(-roll * D2R);
me.getElement("SlipSkid")
.setTranslation(slip * 10, 0);
.setTranslation(-20 * slip, 0);
},
updateFD : func(enabled, pitch, roll, fd_pitch, fd_roll) {