Gamepad R2 throttles in reverse

The current version of the VehicleController module has right trigger incorrectly reverse throttle when pressed.

I believe the following change on line 142 fixes the issue

Incorrect
self.acceleration = (inputState ~= Enum.UserInputState.End) and 1 or 0

Correct
self.acceleration = (inputState ~= Enum.UserInputState.End) and -1 or 0

Thanks!

Fix is in flight.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.