How to access the parameters of the vehicle transmission

Hello. Is there a way to access the parameters of the vehicle transmission through blueprints in Unreal 5 ? The parameter I want access to is the speed at which the transmission switches gears because i want to setup an upgrade system that decreases the speed with each upgrade that gets installed.

If you are referring Chaos Vehicle Plugin, Unfortunately without C++ you can’t Expose anything to Blueprint.

You have 2 Solutions-

  1. Use C++ Functions to Expose those Parameter through Getter and Setters.
  2. Create your own Auto Transmission System (and use Important Variables like Gear Shift Time, Change Up and Change Down RPM there) in Blueprint and Disable Default Variable (Use Auto Transmission).