123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <?xml version="1.0"?>
- <!--
- Edgley OA-7 Optica
- Gary R. Neely 'Buckaroo'
- -->
- <PropertyList>
- <name>Column</name>
- <background>Aircraft/Optica/Panels/transparent-bg.rgb</background>
- <w>8</w>
- <h>32</h>
- <instruments>
- <instrument>
- <name>panel hotspots</name>
- <x>4</x>
- <y>16</y>
- <w>8</w>
- <h>32</h>
- <w-base>8</w-base>
- <h-base>32</h-base>
- <actions>
- <action>
- <name>Friction1</name>
- <button>0</button>
- <x>0</x>
- <y>12</y>
- <w>2</w>
- <h>4</h>
- <binding>
- <command>property-toggle</command>
- <property>/controls/switches/friction</property>
- </binding>
- <binding>
- <command>nasal</command>
- <script>Optica.Mixture_Report();</script>
- </binding>
- </action>
- <action>
- <name>TrimDn</name>
- <button>0</button>
- <x>0</x>
- <y>1</y>
- <w>4</w>
- <h>7</h>
- <binding>
- <command>property-adjust</command>
- <property>/controls/flight/elevator-trim</property>
- <step>0.01</step>
- <min>-1</min>
- <max>1</max>
- <wrap>false</wrap>
- </binding>
- </action>
- <action>
- <name>TrimUp</name>
- <button>0</button>
- <x>0</x>
- <y>-6</y>
- <w>4</w>
- <h>7</h>
- <binding>
- <command>property-adjust</command>
- <property>/controls/flight/elevator-trim</property>
- <step>-0.01</step>
- <min>-1</min>
- <max>1</max>
- <wrap>false</wrap>
- </binding>
- </action>
- <action>
- <name>FlapSwitchDn</name>
- <button>0</button>
- <x>-3</x>
- <y>-8</y>
- <w>3</w>
- <h>6</h>
- <repeatable>true</repeatable>
- <binding>
- <command>nasal</command>
- <script>controls.flapsDown(1)</script>
- </binding>
- <mod-up>
- <binding>
- <command>nasal</command>
- <script>controls.flapsDown(0)</script>
- </binding>
- </mod-up>
- </action>
- <action>
- <name>FlapSwitchUp</name>
- <button>1</button>
- <x>-3</x>
- <y>-8</y>
- <w>3</w>
- <h>6</h>
- <repeatable>true</repeatable>
- <binding>
- <command>nasal</command>
- <script>controls.flapsDown(-1)</script>
- </binding>
- <mod-up>
- <binding>
- <command>nasal</command>
- <script>controls.flapsDown(0)</script>
- </binding>
- </mod-up>
- </action>
- <action>
- <name>FuelSwitch1</name>
- <button>0</button>
- <x>-4</x>
- <y>-15</y>
- <w>7</w>
- <h>5</h>
- <binding>
- <command>nasal</command>
- <script>Optica.tank_switch(1);</script>
- </binding>
- </action>
- <action>
- <name>FuelSwitch0</name>
- <button>1</button>
- <x>-4</x>
- <y>-15</y>
- <w>7</w>
- <h>5</h>
- <binding>
- <command>nasal</command>
- <script>Optica.tank_switch(0);</script>
- </binding>
- </action>
- </actions>
- </instrument>
- </instruments>
- </PropertyList>
|