Summary
The powersteering controller is used to simulate the effects of powersteering on the forces at the steering wheel.
It only affects the strenght of force feedback.
The controller is set-up to allow for feedback which varies with speed,
File Info
Filename | powerSteering.lua |
Path | /lua/vehicle/controller/powerSteering.lua |
Type | Auxiliary |
Usage type | Single |
JBeam Properties
Lower values mean less force being transmitted to the wheel. 1 means the steering is essentially unassisted, while 0 means no forces are transmitted back.
Lower values mean less force being transmitted to the wheel. 1 means the steering is essentially unassisted, while 0 means no forces are transmitted back.
Under this speed, strengthSlow is used. Between this speed and speedFast, the controller will interpolate a value between strengthFast and strengthSlow.
Under this speed, speedFast is used. Between this speed and speedSlow, the controller will interpolate a value between strengthFast and strengthSlow.
Negative values means that the steering will substract a certain amount of force transmitted after the strenghtFast/Slow calculations are completed.
The game will always cap at a minimum of 0.
Example Usage
"controller": [
["fileName"],
["powerSteering", {"strengthFast":1, "strengthSlow": 0.10, "speedSlow": 2, "speedFast": 20, "constantOffset":-0.05}],
],