-- @/lua/vehicle/wheels.lua:154
local function scaleBrakeTorque(coef)
coef = coef or 0
for i = 0, initialWheelCountDec do
local wd = M.wheels[i]
if wd.brakeTorque then
wd.brakeTorque = wd.initialBrakeTorque * coef
end
if wd.parkingTorque then
wd.parkingTorque = wd.initialParkingTorque * coef
end
end
end