Is it possible to control the throttle of wheels independantly?

I would like to control the throttle of the front wheels independently. I’d like to control throttle of the right wheel with the right trigger of the controller, and throttle of the left wheel with the left trigger.

I want to do a star wars pod like vehicle with the two big engines with the ability to control each engine independently. The steering is done by stopping one of the engine.

Any help is appreciated.
Cheers

Hello,

I would tackle this problem as follows:

Have 2 events. One for the left trigger axis and one for the right trigger axis. Then after both events have a branch which checks whether the axis value for both triggers is not equal to 0 (which means the player is pushing down on that axis). If that branch is true (he is using both triggers) make the vehicle move forward. If it is false you do another branch to check whether just the right (or left) trigger is not equal to 0. If the right trigger is not equal to 0 then turn right, otherwise turn left. Here is an example:

Obviously create the functions yourself to make the blueprint do whatever you want to do.