TransmissionComponent
is a mandatory Powertrain
component. It is always third in the Powertrain.Components
list.
The asset uses W/S to select the movement direction by default. To use W/S as throttle/brake exclusively go to Control > Input and tick Swap Input In Reverse
.
gears
list and should be ordered from reverse, then neutral (always 0), then forward gear ratios. Upshift RPM
, Downshift RPM
, Variable Shift Intensity
and Incline Effect Coeff
variables.Target Upshift RPM
and Target Downshift RPM
can be seen under the under the Shifting section of the TransmissionComponent
inspector, during runtime. These values vary depending on the variables mentioned above.IsSequential
makes the transmission be able to shift only one gear up or down at the time. It has the same effect as ticking both Allow Upshift Gear Skipping
and Allow Downshift Gear Skipping
.CVT
(and eCVT) transmissions have variable gearing ratio dependent on load.Shift
delegate inside TransmissionComponent
is used for changing gears.To make shifting more realistic two timers have been added:
Shift Duration
- time Transmission
takes to change from one gear to another. During this time EngineComponent
's throttle is cut off. Works for all transmission types.Post Shift Ban
timer. This field determines minimum time between two shifts. Used to prevent transmission for shifting too often. Only affects automatic transmission types.
Transmission will only shift in automatic mode if all the ticked conditions conditions have been met for Shift Check Cooldown
seconds:
Wheel Spin
- longitudinal slip on all wheels is less than Longitudinal Slip Threshold
(Settings tab)Wheel Skid
- lateral slip on all wheels is less than Lateral Slip Threshold
(Settings tab)Wheel Air
- none of the wheels are in the air.External Shifts Checks Valid
- list of ShiftCheck
delegates. All external shift checks must be valid for transmission to be able to shift.
Transmission gearing profiles were deprecated in favor of a simple gears
list.