Merge branch 'master' into soundfix
This commit is contained in:
commit
e1cbd717a8
8 changed files with 44 additions and 14 deletions
|
@ -21,6 +21,13 @@
|
|||
</livery>
|
||||
</model>
|
||||
|
||||
<rating>
|
||||
<FDM type="int">4</FDM>
|
||||
<systems type="int">5</systems>
|
||||
<cockpit type="int">5</cockpit>
|
||||
<model type="int">4</model>
|
||||
</rating>
|
||||
|
||||
<previews>
|
||||
<preview>
|
||||
<type>exterior</type>
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
</livery>
|
||||
</model>
|
||||
|
||||
<rating>
|
||||
<FDM type="int">4</FDM>
|
||||
<systems type="int">5</systems>
|
||||
<cockpit type="int">5</cockpit>
|
||||
<model type="int">4</model>
|
||||
</rating>
|
||||
|
||||
<previews>
|
||||
<preview>
|
||||
<type>exterior</type>
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
</livery>
|
||||
</model>
|
||||
|
||||
<rating>
|
||||
<FDM type="int">4</FDM>
|
||||
<systems type="int">5</systems>
|
||||
<cockpit type="int">5</cockpit>
|
||||
<model type="int">4</model>
|
||||
</rating>
|
||||
|
||||
<previews>
|
||||
<preview>
|
||||
<type>exterior</type>
|
||||
|
|
|
@ -9,13 +9,6 @@
|
|||
|
||||
<status>Pre V1.0</status>
|
||||
|
||||
<rating>
|
||||
<FDM type="int">4</FDM>
|
||||
<systems type="int">5</systems>
|
||||
<cockpit type="int">5</cockpit>
|
||||
<model type="int">4</model>
|
||||
</rating>
|
||||
|
||||
<hud n="0">
|
||||
<enable3d n="0">false</enable3d>
|
||||
<enable3d n="1">false</enable3d>
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
</livery>
|
||||
</model>
|
||||
|
||||
<rating>
|
||||
<FDM type="int">4</FDM>
|
||||
<systems type="int">5</systems>
|
||||
<cockpit type="int">5</cockpit>
|
||||
<model type="int">4</model>
|
||||
</rating>
|
||||
|
||||
<previews>
|
||||
<preview>
|
||||
<type>exterior</type>
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
</livery>
|
||||
</model>
|
||||
|
||||
<rating>
|
||||
<FDM type="int">4</FDM>
|
||||
<systems type="int">5</systems>
|
||||
<cockpit type="int">5</cockpit>
|
||||
<model type="int">4</model>
|
||||
</rating>
|
||||
|
||||
<previews>
|
||||
<preview>
|
||||
<type>exterior</type>
|
||||
|
|
|
@ -331,13 +331,13 @@ var ITAF = {
|
|||
if (Internal.altTemp >= Position.indicatedAltitudeFtTemp) {
|
||||
Output.thrMode.setValue(2);
|
||||
Text.thr.setValue("PITCH");
|
||||
if (Internal.flchActive) {
|
||||
if (Internal.flchActive) { # Set before mode change to prevent it from overwriting by mistake
|
||||
Text.vert.setValue("SPD CLB");
|
||||
}
|
||||
} else {
|
||||
Output.thrMode.setValue(1);
|
||||
Text.thr.setValue("PITCH");
|
||||
if (Internal.flchActive) {
|
||||
if (Internal.flchActive) { # Set before mode change to prevent it from overwriting by mistake
|
||||
Text.vert.setValue("SPD DES");
|
||||
}
|
||||
}
|
||||
|
@ -649,10 +649,12 @@ var ITAF = {
|
|||
Text.vert.setValue("ALT CAP");
|
||||
} else if (n == 4) { # FLCH
|
||||
Output.apprArm.setBoolValue(0);
|
||||
Output.vert.setValue(1);
|
||||
Internal.alt.setValue(Input.alt.getValue());
|
||||
Internal.altDiff = Internal.alt.getValue() - Position.indicatedAltitudeFt.getValue();
|
||||
if (abs(Internal.altDiff) >= 250) { # SPD CLB or SPD DES
|
||||
if (abs(Input.altDiff) >= 125) { # SPD CLB or SPD DES
|
||||
if (Input.alt.getValue() >= Position.indicatedAltitudeFt.getValue()) { # Usually set Thrust Mode Selector, but we do it now due to timer lag
|
||||
Text.vert.setValue("SPD CLB");
|
||||
} else {
|
||||
Text.vert.setValue("SPD DES");
|
||||
}
|
||||
Internal.altCaptureActive = 0;
|
||||
Output.vert.setValue(4);
|
||||
Internal.flchActive = 1;
|
||||
|
|
|
@ -1 +1 @@
|
|||
4803
|
||||
4804
|
Reference in a new issue