Transmission Component
TransmissionComponent
is a mandatoryPowertrain
component. It is always third in thePowertrain.Components
list.
- NWH Vehicle Physics uses gear ratios – just like the real transmission does.
- If gears are not set up properly the vehicle will not move.
Input Flipping
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
.
Gearing
- Gearing is assigned through the
gears
list and should be ordered from reverse, then neutral (always 0), then forward gear ratios. - Gear ratios can be adjusted during run-time.
Transmission Types
Manual
- In this type of transmission changing gears can only be done through user input. Check Input Setup for more info on input bindings.
Automatic
- Vehicle shifts gears based on the gear ratios and
Upshift RPM
,Downshift RPM
,Variable Shift Intensity
andIncline Effect Coeff
variables. - Current
Target Upshift RPM
andTarget Downshift RPM
can be seen under the under the Shifting section of theTransmissionComponent
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 bothAllow Upshift Gear Skipping
andAllow Downshift Gear Skipping
.
CVT
CVT
(and eCVT) transmissions have variable gearing ratio dependent on load.- One forward gear in Forward Gears list and one reverse gear in Reverse Gears list should be used. The value of the gear is the maximum gear ratio.
External
Shift
delegate insideTransmissionComponent
is used for changing gears.- This allows for external shifting logic.
- If the delegate is not assigned this option will result in no gear shifts.
Timing
To make shifting more realistic two timers have been added:
Shift Duration
- timeTransmission
takes to change from one gear to another. During this timeEngineComponent
'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.
Shift Conditions
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 thanLongitudinal Slip Threshold
(Settings tab)Wheel Skid
- lateral slip on all wheels is less thanLateral Slip Threshold
(Settings tab)Wheel Air
- none of the wheels are in the air.External Shifts Checks Valid
- list ofShiftCheck
delegates. All external shift checks must be valid for transmission to be able to shift.
Transmission Gearing Profile
Transmission gearing profiles were deprecated in favor of a simple gears
list.