2 <!DOCTYPE PropertyList SYSTEM "panel.dtd">
3 <!-- This part should be the same for any 3D panel. Customize the actions section -->
5 <name>Hurricane Panel 2 Hotspots</name>
6 <background>Aircraft/Hurricane/Models/transparent-bg.rgb</background>
12 <name>Slope Controls</name>
21 <name>background</name>
23 <path>Aircraft/Hurricane/Models/transparent-bg.rgb</path>
33 <path>Aircraft/Hurricane/Models/hotspotgrid.rgb</path>
44 <name>lever open</name>
51 <command>nasal</command>
58 <name>lever close</name>
65 <command>nasal</command>
67 hurricane.closeCock();
71 <!-- hydraulic selector
73 <name>flaps retract</name>
80 <command>nasal</command>
81 <script>hurricane.hydraulicLever(1,1)</script>
85 <name>flaps neutral</name>
92 <command>nasal</command>
93 <script>hurricane.hydraulicLever(1,0)</script>
97 <name>flaps extend</name>
104 <command>nasal</command>
105 <script>hurricane.hydraulicLever(1,-1)</script>
109 <name>gear retract</name>
116 <command>nasal</command>
117 <script>hurricane.hydraulicLever(-1,1)</script>
121 <name>gear neutral</name>
128 <command>nasal</command>
129 <script>hurricane.hydraulicLever(-1,0)</script>
133 <name>gear extend</name>
140 <command>nasal</command>
141 <script>hurricane.hydraulicLever(-1,-1)</script>
144 <!-- cut-off pull -->
146 <name>cut-off pull</name>
153 <command>nasal</command>
155 hurricane.pullCutoff(1);
160 <command>nasal</command>
162 hurricane.pullCutoff(0);