Arcc Posted Saturday at 02:48 PM Posted Saturday at 02:48 PM Hi Sorry, i use an online translator. I use a yoke Winwing (Hotas Orion 2) and the china hat for elevator, rudder ..etc . trim I find it much too reactive. the slightest action on the button........... too fast. Does there exist a way to decrease the speed ? lua files or over. Sorry if the subject already exists. Best regard Christian
Terry Dactil Posted 18 hours ago Posted 18 hours ago On 8/10/2025 at 12:48 AM, Arcc said: Does there exist a way to decrease the speed ? lua files or over. Yes. This problem was fixed for the Elevator Trim on the Mosquito some time ago Two lines were added to the default.lua file in >>> Mods\aircraft\MosquitoFBMkVI\Input\MosquitoFBMkVI\joystick\default.lua" I expect it would also work for the Corsair and could be modified for the rudder and ailerons too.. This below is for the Mosquito gives two extra control options , Trim Elevator Nose Up 1/4 and Trim Elevator Nose Down 1/4, to use instead of the originals -- ------------------------------------------------------------------------------ -- Tail Trim Wheel -------------------------------------------------------------- { cockpit_device_id = devices.CONTROLS, down = device_commands.Button_16, up = device_commands.Button_16, value_down = -1.00, value_up = 0.0, name = _("Trim Elevator Nose Up"), category = _("Flight Control")}, { cockpit_device_id = devices.CONTROLS, down = device_commands.Button_16, up = device_commands.Button_16, value_down = 1.00, value_up = 0.0, name = _("Trim Elevator Nose Down"), category = _("Flight Control")}, -- MOD ADDED HERE { cockpit_device_id = devices.CONTROLS, down = device_commands.Button_16, up = device_commands.Button_16, value_down = -0.25, value_up = 0.0, name = _("Trim Elevator Nose Up 1/4"), category = _("Flight Control")}, { cockpit_device_id = devices.CONTROLS, down = device_commands.Button_16, up = device_commands.Button_16, value_down = 0.25, value_up = 0.0, name = _("Trim Elevator Nose Down 1/4"), category = _("Flight Control")}, -- ---------------------------------------------------------------------------------- There will be a thread in the Mosquito forum where you can thank the original poster.
Terry Dactil Posted 8 hours ago Posted 8 hours ago To my untrained analysis of the code, if you don't want to keep the original key binds, then just find the appropriate Button numbers in the default .lua file and reduce their values from +1 and -1 t0 +0.25 and -0.25 or some other reduced value. Good luck.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now