Generic US mil drum altimeter: added negativ values flag, below 1000 and 10000 ft flags.
This commit is contained in:
parent
5049c8164e
commit
a34691165d
1 changed files with 32 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
<type>rotate</type>
|
||||
<object-name>needle</object-name>
|
||||
<property>instrumentation/altimeter/indicated-altitude-ft</property>
|
||||
<factor>3.6</factor>
|
||||
<factor>0.36</factor>
|
||||
<axis>
|
||||
<x>-1</x>
|
||||
<y>0</y>
|
||||
|
@ -76,6 +76,37 @@
|
|||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>negativ-flag</object-name>
|
||||
<condition>
|
||||
<less-than>
|
||||
<property>instrumentation/altimeter/indicated-altitude-ft</property>
|
||||
<value>0</value>
|
||||
</less-than>
|
||||
</condition>
|
||||
</animation>
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>below-1000-flag</object-name>
|
||||
<condition>
|
||||
<less-than>
|
||||
<property>instrumentation/altimeter/indicated-altitude-ft</property>
|
||||
<value>1000</value>
|
||||
</less-than>
|
||||
</condition>
|
||||
</animation>
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>below-10000-flag</object-name>
|
||||
<condition>
|
||||
<less-than>
|
||||
<property>instrumentation/altimeter/indicated-altitude-ft</property>
|
||||
<value>10000</value>
|
||||
</less-than>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<!-- barometer drum counter -->
|
||||
<animation>
|
||||
<type>textranslate</type>
|
||||
|
|
Loading…
Add table
Reference in a new issue