Jump to content

Recommended Posts

Posted

When you click on the autopilot speed stabilization/speed hold On and Off buttons in the cockpit, they go in and come out when you let go of the button.

 

If you map them to joystick buttons, they get stuck in until you click on them again. YouTube video included to showcase the issue:

 

 

  • Thanks 1
Posted (edited)

The default bindings only defined a "down" action, but not an "up" one. This is what caused the buttons to remain depressed. If you are comfortable with editing the default.lua in the joystick and/or keyboard folder, you can add these lines to the files, and the stabilize / off buttons will now release when you release the key.

 

{down = autopilot_commands.SpeedOn, up = autopilot_commands.SpeedOn, cockpit_device_id = devices.AUTOPILOT, value_down = 1 ,value_up = -1, name = _('Autopilot Speed Stabilize On'), category = {_('Autopilot (SAU-V24)')}},
{down = autopilot_commands.SpeedOff, up = autopilot_commands.SpeedOff, cockpit_device_id = devices.AUTOPILOT, value_down = 1 ,value_up = -1, name = _('Autopilot Speed Stabilize Off'), category = {_('Autopilot (SAU-V24)')}},

 

Edited by Pacientis
  • Like 2
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...