7e0a45c798
This is proof of concept, not a complete conversion.
125 lines
2.7 KiB
XML
125 lines
2.7 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<PropertyList>
|
|
|
|
<path>mag_switch.ac</path>
|
|
|
|
<animation>
|
|
<type>material</type>
|
|
<object-name>key</object-name>
|
|
<object-name>start</object-name>
|
|
<object-name>magsw</object-name>
|
|
<emission>
|
|
<red>0.075</red>
|
|
<green>0.015</green>
|
|
<blue>0.00001</blue>
|
|
<factor-prop>/sim/model/material/instruments/factor</factor-prop>
|
|
</emission>
|
|
</animation>
|
|
|
|
<!-- magneto switch -->
|
|
<animation>
|
|
<type>knob</type>
|
|
<object-name>click-L</object-name>
|
|
<object-name>click-R</object-name>
|
|
|
|
<visible>false</visible>
|
|
<action>
|
|
<binding>
|
|
<command>property-adjust</command>
|
|
<property>/controls/engines/engine/magnetos</property>
|
|
<factor>1</factor>
|
|
<min>0</min>
|
|
<max>3</max>
|
|
</binding>
|
|
</action>
|
|
<hovered>
|
|
<binding>
|
|
<command>set-tooltip</command>
|
|
<tooltip-id>magneto-switch</tooltip-id>
|
|
<label>Magnetos: %s</label>
|
|
<property>controls/engines/engine/magnetos</property>
|
|
<mapping>nasal</mapping>
|
|
<script>
|
|
var m = getprop('controls/engines/engine/magnetos');
|
|
if (m == 1) return 'RIGHT';
|
|
if (m == 2) return 'LEFT';
|
|
if (m == 3) return 'BOTH';
|
|
return 'OFF';
|
|
</script>
|
|
</binding>
|
|
</hovered>
|
|
</animation>
|
|
|
|
|
|
<!-- Starter -->
|
|
<animation>
|
|
<type>pick</type>
|
|
<object-name>click-S</object-name>
|
|
<visible>false</visible>
|
|
<action>
|
|
<name>starter</name>
|
|
<button>0</button>
|
|
<binding>
|
|
<command>property-assign</command>
|
|
<property>/controls/switches/starter</property>
|
|
<value >1</value>
|
|
</binding>
|
|
<mod-up>
|
|
<binding>
|
|
<command>property-assign</command>
|
|
<property>/controls/switches/starter</property>
|
|
<value>0</value>
|
|
</binding>
|
|
</mod-up>
|
|
</action>
|
|
|
|
<hovered>
|
|
<binding>
|
|
<command>set-tooltip</command>
|
|
<tooltip-id>starter-switch</tooltip-id>
|
|
<label>Engine Starter</label>
|
|
</binding>
|
|
</hovered>
|
|
|
|
</animation>
|
|
<!-- key animations -->
|
|
<animation>
|
|
<name>mags-key</name>
|
|
<type>rotate</type>
|
|
<object-name>key</object-name>
|
|
<property>/controls/engines/engine/magnetos</property>
|
|
<factor>30</factor>
|
|
<center>
|
|
<x-m>0</x-m>
|
|
<y-m>0</y-m>
|
|
<z-m>0</z-m>
|
|
</center>
|
|
<axis>
|
|
<x>-1</x>
|
|
<y>0</y>
|
|
<z>0</z>
|
|
</axis>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>select</type>
|
|
<object-name>key</object-name>
|
|
<condition>
|
|
<not>
|
|
<property>/controls/switches/starter</property>
|
|
</not>
|
|
</condition>
|
|
</animation>
|
|
|
|
<animation>
|
|
<type>select</type>
|
|
<object-name>start</object-name>
|
|
<condition>
|
|
<property>/controls/switches/starter</property>
|
|
</condition>
|
|
</animation>
|
|
|
|
</PropertyList>
|
|
|
|
|