1
0
Fork 0
fgdata/Aircraft/c182-set.xml
david 6e8657bb49 Added keybindings for rudder trim on the Cessna 182 and Cessna 310:
'<' to decrease and '>' to increase.  Rudder trim on the Cessna 172 is
static, and has to be set before the flight using the
/controls/rudder-trim property.
2001-12-17 14:25:57 +00:00

63 lines
1.5 KiB
XML

<?xml version="1.0"?>
<!--
************************************************************************
Cessna 182 simulation config. This files ties together all the components
used by FGFS to represent the C182. Components include the flight data
model, instrument panel, and external 3D model.
3D models can be downloaded from http://home.t-online.de/home/Wolfram.Kuss/
n
October 23 2001 John Check, fgpanels@rockfish.net
************************************************************************
-->
<PropertyList>
<sim>
<flight-model>jsb</flight-model>
<aero>c182</aero>
<sound>true</sound>
<panel>
<path>Aircraft/c172/Panels/c172-ifr-panel.xml</path>
<visibility>true</visibility>
</panel>
<panel_2>
<path>Aircraft/c172/Panels/c172-trans-mini-panel.xml</path>
</panel_2>
<model>
<path>Aircraft/c172/Models/N757/n757.ac</path>
</model>
</sim>
<input>
<keyboard>
<key n="60">
<name>&lt;</name>
<desc>Rudder Trim Left</desc>
<binding>
<command>property-adjust</command>
<property>/controls/rudder-trim</property>
<min type="double">-1.0</min>
<step type="double">-0.001</step>
</binding>
</key>
<key n="62">
<name>&gt;</name>
<desc>Rudder Trim Right</desc>
<binding>
<command>property-adjust</command>
<property>/controls/rudder-trim</property>
<max type="double">1.0</max>
<step type="double">0.001</step>
</binding>
</key>
</keyboard>
</input>
</PropertyList>