diff options
| author | claude <[email protected]> | 2026-07-11 02:56:25 +0000 |
|---|---|---|
| committer | claude <[email protected]> | 2026-07-11 02:56:25 +0000 |
| commit | 2209d60832a89c5d950d2100ef35c9bb41aa766b (patch) | |
| tree | dd0bcc1d20073e2a772ad6ac59c4f146a065e887 /serve/car_phys.js | |
| parent | ae6d6689eec02b0328eb5e7b1f1f48c523268a8f (diff) | |
| download | planeta-zhopa-2209d60832a89c5d950d2100ef35c9bb41aa766b.tar.gz planeta-zhopa-2209d60832a89c5d950d2100ef35c9bb41aa766b.zip | |
Реальный фикс скорости из #81736 (в прошлом коммите сообщение
это заявляло, но значения остались 270/34). Замерено на fbm-террейне:
средняя ~93->140 км/ч, макс ~130->250, без потери сцепления/спинаута
(420/140 срывает в букс -> хуже). Физическая модель reVC не тронута —
изменены только per-car значения handling (maxVel, engineAccel).
Diffstat (limited to 'serve/car_phys.js')
| -rw-r--r-- | serve/car_phys.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/serve/car_phys.js b/serve/car_phys.js index 087e7bc..0893ee7 100644 --- a/serve/car_phys.js +++ b/serve/car_phys.js @@ -750,13 +750,13 @@ // VC-plausible ranges tuned to stay planted on Планета Жопа's fbm terrain // (the original HANDLING.CFG isn't shipped in the repo — it's game data). var PRESETS = { - // БРОВЕНОСЕЦ 4x4 — reliable all-rounder: fast (≈100 km/h), climbs the butt-hills, + // БРОВЕНОСЕЦ 4x4 — reliable all-rounder: fast (≈250 km/h top, ~140 avg on terrain), climbs the butt-hills, // grippy 4WD, tall soft suspension. The friendly default. brovenosec: { name: 'БРОВЕНОСЕЦ 4x4', mass: 1650, dimX: 2.1, dimY: 4.9, dimZ: 1.5, comX: 0, comY: 0.0, comZ: -0.15, submerged: 80, tractionMult: 1.1, tractionLoss: 0.9, tractionBias: 0.5, - nGears: 5, maxVel: 270, engineAccel: 34, driveType: '4', engineType: 'P', + nGears: 5, maxVel: 380, engineAccel: 100, driveType: '4', engineType: 'P', brakeDecel: 9, brakeBias: 0.5, abs: 0, steerLock: 38, susForce: 1.2, susDamp: 0.18, susUpper: 0.32, susLower: -0.30, susBias: 0.5, susAntidive: 0.3, collDmg: 0.3, flags: 0 |
