4667e2f9f1
- HSI GS needles shouldn't disappear when they hit their limits, only when there is no GS signal. - Make vac/amp gauge driven by new minimalistic amp model. - Update digital clock face color to look more "LCD-ish" based on a real C172-S cockpit photo. - Add an OAT gauge to the old C172 2d panel.
75 lines
1.9 KiB
XML
75 lines
1.9 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
Simple OAT Gauge
|
|
|
|
Started May 2003 by Curtis L. Olson <curt@flightgear.org>
|
|
|
|
This is an instrument configuration file for the open-source flight
|
|
simulator FlightGear (www.flightgear.org). The file is an XML-encoded
|
|
FlightGear property list defining the instrument's layers and actions.
|
|
|
|
Each instrument is composed of layers stacked on top of each other.
|
|
A layer may be a texture (with transparent parts to show the layers
|
|
underneath), text, or a special layer that switches between two
|
|
others (say, to turn an indicator light on or off). Each layer can
|
|
move independently in proportion to a property value, and text
|
|
can be generated from property values as well: all of the layer's
|
|
movements are defined as transformations.
|
|
|
|
Actions are hotspots on the instrument that will respond to a mouse
|
|
click. Actions always modify the values of properties, either by
|
|
adjusting them, toggling them, or swaping them with other
|
|
properties' values.
|
|
-->
|
|
|
|
<PropertyList>
|
|
<name>Digital OAT</name>
|
|
<w-base>80</w-base>
|
|
<h-base>25</h-base>
|
|
|
|
<layers>
|
|
<layer>
|
|
<name>OAT background</name>
|
|
<texture>
|
|
<path>Aircraft/Instruments/Textures/faces-3.rgb</path>
|
|
<x1>0.6</x1>
|
|
<y1>0.2</y1>
|
|
<x2>0.9</x2>
|
|
<y2>0.3</y2>
|
|
</texture>
|
|
<w>80</w>
|
|
<h>25</h>
|
|
</layer>
|
|
|
|
<layer>
|
|
<name>display</name>
|
|
<type>text</type>
|
|
<font>led</font>
|
|
<point-size>6.5</point-size>
|
|
<color>
|
|
<red>0.0</red>
|
|
<green>0.0</green>
|
|
<blue>0.0</blue>
|
|
</color>
|
|
<chunks>
|
|
<chunk>
|
|
<type>number-value</type>
|
|
<property>/environment/temperature-degc</property>
|
|
<format>%.1f C</format>
|
|
</chunk>
|
|
</chunks>
|
|
<transformations>
|
|
<transformation>
|
|
<type>x-shift</type>
|
|
<offset>-20</offset>
|
|
</transformation>
|
|
<transformation>
|
|
<type>y-shift</type>
|
|
<offset>-6</offset>
|
|
</transformation>
|
|
</transformations>
|
|
</layer>
|
|
</layers>
|
|
|
|
</PropertyList>
|