jubuttib Posted August 21, 2021 Posted August 21, 2021 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: 1
Xtorris Posted August 21, 2021 Posted August 21, 2021 (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 August 21, 2021 by Pacientis 2
Recommended Posts