1
0
Fork 0

Correct defaults FLOLS angle from 3 to 3.5 degrees

Adjusted to match the FLOLS model and code.

On carrier approaches 0.5 degress makes a surprising
level of difference!
This commit is contained in:
Stuart Buchanan 2020-04-04 18:03:20 +01:00
parent 5d75933bac
commit dc6fb53596

View file

@ -72,7 +72,7 @@ void FGAICarrier::readFromScenario(SGPropertyNode* scFileNode) {
_flolsPosOffset(2) = - flols->getDoubleValue("z-offset-m", 0);
_flolsHeadingOffsetDeg = flols->getDoubleValue("heading-offset-deg", 0.0);
_flolsApproachAngle = flols->getDoubleValue("glidepath-angle-deg", 3.0);
_flolsApproachAngle = flols->getDoubleValue("glidepath-angle-deg", 3.5);
} else
_flolsPosOffset = SGVec3d::zeros();