removed a duplicate property that snuck in somehow :)
This commit is contained in:
parent
00156d175f
commit
47110aae85
4 changed files with 117 additions and 117 deletions
Aircraft/Instruments-3d/kfc200
|
@ -24,7 +24,7 @@ Syd Adams
|
|||
<type>select</type>
|
||||
<object-name>FD-ON</object-name>
|
||||
<condition>
|
||||
<property>/instrumentation/kfc200/fd_on</property>
|
||||
<property>/instrumentation/kfc200/fd-on</property>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/instrumentation/kfc200/fd_on</property>
|
||||
<property>/instrumentation/kfc200/fd-on</property>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
|
|
@ -4,13 +4,13 @@
|
|||
# hdg - Heading: v-bars command a turn to the heading bug
|
||||
# appr - Approach: bank and pitch commands capture and track LOC and GS
|
||||
# bc - Reverse Localizer: bank command to caputre and track a reverse LOC
|
||||
# course. GS is locked out.
|
||||
#course.GS is locked out.
|
||||
# arm - Standby mode to compute capture point for nav, appr, or bc.
|
||||
# cpld - Coupled: Active mode for nav, appr, or bc.
|
||||
# ga - Go Around: commands wings level and missed approach attitude.
|
||||
# alt - Altitude hold: commands pitch to hold altitude
|
||||
# vertical trim - pitch command to adjust altitude at 500 fpm while in alt hold
|
||||
# or pitch attitude at rate of 1 deg/sec when not in alt hold
|
||||
#or pitch attitude at rate of 1 deg/sec when not in alt hold
|
||||
# yd - Yaw Damper: system senses motion around ayw axis and moves rudder to
|
||||
# oppose yaw.
|
||||
|
||||
|
@ -54,18 +54,18 @@ setlistener("/instrumentation/kfc200/fd-on", func {
|
|||
clear_ap();
|
||||
});
|
||||
|
||||
setlistener("/autopilot/settings/target-altitude-ft",func {
|
||||
setlistener("/autopilot/settings/target-altitude-ft",func{
|
||||
if(!fdprop.getNode("serviceable").getBoolValue()){return;}
|
||||
alt_select = cmdarg().getValue();
|
||||
});
|
||||
|
||||
setlistener("/autopilot/route-manager/min-lock-altitude-agl-ft", func {
|
||||
setlistener("/autopilot/route-manager/min-lock-altitude-agl-ft",func{
|
||||
if(!fdprop.getNode("serviceable").getBoolValue()){return;}
|
||||
DH = cmdarg().getValue();
|
||||
});
|
||||
|
||||
|
||||
setlistener("/instrumentation/kfc200/fdmode", func {
|
||||
setlistener("/instrumentation/kfc200/fdmode",func{
|
||||
if(!fdprop.getNode("serviceable").getBoolValue()){return;}
|
||||
fdmode = cmdarg().getValue();
|
||||
NAVBC.setBoolValue(0);
|
||||
|
|
|
@ -71,7 +71,7 @@ Syd Adams
|
|||
<object-name>Lpivot</object-name>
|
||||
<object-name>Rpivot</object-name>
|
||||
<condition>
|
||||
<property>instrumentation/kfc200/fd_on</property>
|
||||
<property>instrumentation/kfc200/fd-on</property>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue