Reworking vehicle controller

This commit is contained in:
Ivan Grachyov
2021-11-12 20:47:12 +05:00
parent 1650ac9a6d
commit b5fb04cce8
7 changed files with 169 additions and 30 deletions

View File

@@ -1,5 +1,5 @@
config = {
Name = "Jopa",
Name = 'Jopa',
Engine = {
IdleRPM = 900,
MaxRPM = 7000,
@@ -35,7 +35,7 @@ config = {
MaxTorque = 600
},
Gearbox = {
Type = "AUTO",
Type = 'AUTO',
ShiftDuration = 0.2,
ShiftSmoothness = 0.3,
Ratios = {13.45, 8.12, 5.51, 4.16, 3.36, 2.83},
@@ -61,10 +61,10 @@ config = {
FinalDrive = 1
}},
Systems = {{
Type = "LAUNCH",
Type = 'LAUNCH',
RPMLimit = 3500
}, {
Type = "TRACTION",
Type = 'TRACTION',
Slip = 1.5
}}
}