Paul Mcann:
I added some hot spots to the default c172p-3d.
This commit is contained in:
parent
a059fa0119
commit
93b035b0b0
2 changed files with 132 additions and 9 deletions
|
@ -71,8 +71,8 @@ Legacy 2D instruments and actions for the 3D C172P cockpit.
|
||||||
|
|
||||||
<instrument include="../../Instruments/single-magneto-switch.xml">
|
<instrument include="../../Instruments/single-magneto-switch.xml">
|
||||||
<name>Magneto switch panel</name>
|
<name>Magneto switch panel</name>
|
||||||
<x>50</x>
|
<x>120</x>
|
||||||
<y>-225</y>
|
<y>-180</y>
|
||||||
</instrument>
|
</instrument>
|
||||||
|
|
||||||
<!-- end engine controls cluster -->
|
<!-- end engine controls cluster -->
|
||||||
|
@ -203,7 +203,7 @@ Legacy 2D instruments and actions for the 3D C172P cockpit.
|
||||||
<instrument include="../../Instruments/dme.xml">
|
<instrument include="../../Instruments/dme.xml">
|
||||||
<name>DME</name>
|
<name>DME</name>
|
||||||
<x>880</x>
|
<x>880</x>
|
||||||
<y>27</y>
|
<y>16</y>
|
||||||
</instrument>
|
</instrument>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
@ -290,8 +290,8 @@ Legacy 2D instruments and actions for the 3D C172P cockpit.
|
||||||
<action>
|
<action>
|
||||||
<name>toggle nav lights</name>
|
<name>toggle nav lights</name>
|
||||||
<button>0</button>
|
<button>0</button>
|
||||||
<x>-300</x>
|
<x>-270</x>
|
||||||
<y>-100</y>
|
<y>-250</y>
|
||||||
<w>20</w>
|
<w>20</w>
|
||||||
<h>50</h>
|
<h>50</h>
|
||||||
<binding>
|
<binding>
|
||||||
|
@ -299,14 +299,137 @@ Legacy 2D instruments and actions for the 3D C172P cockpit.
|
||||||
<property>/controls/lights/navigation</property>
|
<property>/controls/lights/navigation</property>
|
||||||
</binding>
|
</binding>
|
||||||
</action>
|
</action>
|
||||||
</actions>
|
|
||||||
|
|
||||||
</instrument>
|
<!-- flap extend/retract -->
|
||||||
|
<action>
|
||||||
|
<name>Flap Retract</name>
|
||||||
|
<button>0</button>
|
||||||
|
<x>240</x>
|
||||||
|
<y>-245</y>
|
||||||
|
<w>20</w>
|
||||||
|
<h>80</h>
|
||||||
|
<binding>
|
||||||
|
<command>property-adjust</command>
|
||||||
|
<property>/controls/flight/flaps</property>
|
||||||
|
<step>-0.34</step>
|
||||||
|
<min>0</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
<wrap>false</wrap>
|
||||||
|
</binding>
|
||||||
|
</action>
|
||||||
|
|
||||||
|
<action>
|
||||||
|
<name>Flap Extend</name>
|
||||||
|
<button>0</button>
|
||||||
|
<x>260</x>
|
||||||
|
<y>-245</y>
|
||||||
|
<w>20</w>
|
||||||
|
<h>80</h>
|
||||||
|
<binding>
|
||||||
|
<command>property-adjust</command>
|
||||||
|
<property>/controls/flight/flaps</property>
|
||||||
|
<step>0.34</step>
|
||||||
|
<min>0</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
<wrap>false</wrap>
|
||||||
|
</binding>
|
||||||
|
</action>
|
||||||
|
|
||||||
|
<!-- carb heat control -->
|
||||||
|
|
||||||
|
<action>
|
||||||
|
<desc>carb-heat</desc>
|
||||||
|
<button>0</button>
|
||||||
|
<x>-150</x>
|
||||||
|
<y>-200</y>
|
||||||
|
<w>40</w>
|
||||||
|
<h>40</h>
|
||||||
|
<binding>
|
||||||
|
<command>property-toggle</command>
|
||||||
|
<property>/controls/anti-ice/engine/carb-heat</property>
|
||||||
|
</binding>
|
||||||
|
</action>
|
||||||
|
|
||||||
|
|
||||||
</instruments>
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- throttle control -->
|
||||||
|
|
||||||
|
<action>
|
||||||
|
<name>big decrease</name>
|
||||||
|
<button>0</button>
|
||||||
|
<x>-50</x>
|
||||||
|
<y>-200</y>
|
||||||
|
<w>40</w>
|
||||||
|
<h>76</h>
|
||||||
|
<binding>
|
||||||
|
<command>property-adjust</command>
|
||||||
|
<property>/controls/engines/engine/throttle</property>
|
||||||
|
<step>-0.07</step>
|
||||||
|
<min>0</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
<wrap>false</wrap>
|
||||||
|
</binding>
|
||||||
|
</action>
|
||||||
|
|
||||||
|
<action>
|
||||||
|
<name>small increase</name>
|
||||||
|
<button>0</button>
|
||||||
|
<x>-10</x>
|
||||||
|
<y>-200</y>
|
||||||
|
<w>40</w>
|
||||||
|
<h>76</h>
|
||||||
|
<binding>
|
||||||
|
<command>property-adjust</command>
|
||||||
|
<property>/controls/engines/engine/throttle</property>
|
||||||
|
<step>0.07</step>
|
||||||
|
<min>0</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
<wrap>false</wrap>
|
||||||
|
</binding>
|
||||||
|
</action>
|
||||||
|
|
||||||
|
<!-- mixture control -->
|
||||||
|
|
||||||
|
<action>
|
||||||
|
<name>small decrease</name>
|
||||||
|
<button>0</button>
|
||||||
|
<x>80</x>
|
||||||
|
<y>-200</y>
|
||||||
|
<w>40</w>
|
||||||
|
<h>76</h>
|
||||||
|
<binding>
|
||||||
|
<command>property-adjust</command>
|
||||||
|
<property>/controls/engines/engine/mixture</property>
|
||||||
|
<step>-0.03</step>
|
||||||
|
<min>0</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
<wrap>false</wrap>
|
||||||
|
</binding>c172p-2d-panel.xml
|
||||||
|
</action>
|
||||||
|
|
||||||
|
<action>
|
||||||
|
<name>small increase</name>
|
||||||
|
<button>0</button>
|
||||||
|
<x>120</x>
|
||||||
|
<y>-200</y>
|
||||||
|
<w>40</w>
|
||||||
|
<h>76</h>
|
||||||
|
<binding>
|
||||||
|
<command>property-adjust</command>
|
||||||
|
<property>/controls/engines/engine/mixture</property>
|
||||||
|
<step>0.03</step>
|
||||||
|
<min>0</min>
|
||||||
|
<max>1.0</max>
|
||||||
|
<wrap>false</wrap>
|
||||||
|
</binding>
|
||||||
|
</action>
|
||||||
|
|
||||||
|
</actions>
|
||||||
|
|
||||||
|
</instrument>
|
||||||
|
</instruments>
|
||||||
|
|
||||||
</PropertyList>
|
</PropertyList>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@
|
||||||
<type>translate</type>
|
<type>translate</type>
|
||||||
<object-name>CarbHeatGroup</object-name>
|
<object-name>CarbHeatGroup</object-name>
|
||||||
<property>/controls/anti-ice/engine[0]/carb-heat</property>
|
<property>/controls/anti-ice/engine[0]/carb-heat</property>
|
||||||
<factor>-0.08</factor>
|
<factor>-0.04</factor>
|
||||||
<axis>
|
<axis>
|
||||||
<x>1.0</x>
|
<x>1.0</x>
|
||||||
<y>0.0</y>
|
<y>0.0</y>
|
||||||
|
|
Loading…
Reference in a new issue