Tony Peden writes:

 > Is it possible to get this setup:
 > axis 1 -> throttle 0
 > axis 2-> throttle 1
 > axis 3 -> mixture 1 & mixture 2
 > ?
 > 
 > I've tried several different setups but the best I can do is 1 axis controls 
 > both throttles, the 2 axis controls the right throttle, and the 3rd axis
 > controls one mixture or the other, but not both.

Yes -- you just have to put in two separate bindings for the same
axis.  Here's how both throttles are bound to the same axis in
$FG_BASE/joystick.xml:

  <axis n="2">
   <desc>Throttle</desc>
   <binding>
    <command>property-scale</command>
    <property>/controls/throttle[0]</property>
    <offset type="double">-1.0</offset>
    <factor type="double">-0.5</factor>
   </binding>
   <binding>
    <command>property-scale</command>
    <property>/controls/throttle[1]</property>
    <offset type="double">-1.0</offset>
    <factor type="double">-0.5</factor>
   </binding>
  </axis>


All the best,


David

-- 
David Megginson
[EMAIL PROTECTED]


_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to