Hello Guys,
Whenever I trim using my joystick's Hat switch with a very quick and small button press, the plane changes the pitch or roll violently.
I tried to modify the default hornet trim input value in default.lua files and decrease it to lower than 1.0 per button press, but unfortunately the trim completely stops if set to anything but 1.0. I've tried 0.5 & 0.3 but nothing works.
I modified the below files.
\DCS World OpenBeta\Mods\aircraft\FA-18C\Input\FA-18C\keyboard\default.lua
\DCS World OpenBeta\Mods\aircraft\FA-18C\Input\FA-18C\joystick\default.lua
These are the lines I modified.
{ pressed = hotas_commands.STICK_TRIMMER_DOWN, up = hotas_commands.STICK_TRIMMER_DOWN, cockpit_device_id = devices.HOTAS, value_pressed = 0.5, value_up = 0.0, name = _('Trimmer Switch - PUSH(DESCEND)'), category = {_('Stick'), _('Flight Control'), _('HOTAS')}},
{ pressed = hotas_commands.STICK_TRIMMER_UP, up = hotas_commands.STICK_TRIMMER_UP, cockpit_device_id = devices.HOTAS, value_pressed = 0.5, value_up = 0.0, name = _('Trimmer Switch - PULL(CLIMB)'), category = {_('Stick'), _('Flight Control'), _('HOTAS')}},
{ pressed = hotas_commands.STICK_TRIMMER_LEFT, up = hotas_commands.STICK_TRIMMER_LEFT, cockpit_device_id = devices.HOTAS, value_pressed = 0.5, value_up = 0.0, name = _('Trimmer Switch - LEFT WING DOWN'), category = {_('Stick'), _('Flight Control'), _('HOTAS')}},
{ pressed = hotas_commands.STICK_TRIMMER_RIGHT, up = hotas_commands.STICK_TRIMMER_RIGHT, cockpit_device_id = devices.HOTAS, value_pressed = 0.5, value_up = 0.0, name = _('Trimmer Switch - RIGHT WING DOWN'), category = {_('Stick'), _('Flight Control'), _('HOTAS')}},
I appreciate if someone can help me decreasing the trim sensitivity or how to properly modify the default.lua files to make the new trim values are working.