1
0
Fork 0

Add gear controls to CH Throttle Quadrant.

This commit is contained in:
Stuart Buchanan 2017-11-20 22:17:46 +00:00
parent 41834a69ef
commit 0117da44ff

View file

@ -170,5 +170,32 @@
</binding>
</mod-up>
</button>
<button n="6">
<desc type="string">Gear Up</desc>
<repeatable type="string">false</repeatable>
<binding>
<command type="string">nasal</command>
<script type="string">controls.gearDown(-1);</script>
</binding>
<mod-up>
<binding>
<command type="string">nasal</command>
<script type="string">controls.gearDown(0);</script>
</binding>
</mod-up>
</button>
<button n="7">
<desc type="string">Gear Down</desc>
<repeatable type="string">false</repeatable>
<binding>
<command type="string">nasal</command>
<script type="string">controls.gearDown(1);</script>
</binding>
<mod-up>
<binding>
<command type="string">nasal</command>
<script type="string">controls.gearDown(0);</script>
</binding>
</mod-up>
</button>
</PropertyList>