Advanced Configuration
Tuning for Different Compounds
You can create variations for different tire compounds:
-- Soft Compound (heats quickly, cools quickly)
Config.CarModels[GetHashKey("f1_soft")] = {
breakHeatRate = 0.3,
BreaksHeat = 0.3,
SteeringHeat = 0.7,
TireCoolRateSlow = 0.3,
tempTiresMax = 110.0,
tempTiresMin = 20.0,
-- ... other params
}
-- Medium Compound (balanced)
Config.CarModels[GetHashKey("f1_medium")] = {
breakHeatRate = 0.25,
BreaksHeat = 0.2,
SteeringHeat = 0.5,
TireCoolRateSlow = 0.2,
tempTiresMax = 105.0,
tempTiresMin = 20.0,
-- ... other params
}
-- Hard Compound (heats slowly, maintains temp)
Config.CarModels[GetHashKey("f1_hard")] = {
breakHeatRate = 0.2,
BreaksHeat = 0.15,
SteeringHeat = 0.4,
TireCoolRateSlow = 0.15,
tempTiresMax = 100.0,
tempTiresMin = 20.0,
-- ... other params
}Creating Realistic Grip Curves
Adjust grip loss ranges to match real F1 behavior:
Multiple Vehicle Support
Add multiple F1 models with different characteristics:
Last updated
