forked from Simnation/Main
15 lines
358 B
Lua
15 lines
358 B
Lua
Config = {}
|
|
|
|
-- Traffic density settings
|
|
Config.movingTrafficDensity = 0.05 -- Reduced from 0.1 to 0.05 (5% density when moving)
|
|
Config.stationaryTrafficDensity = 0.05 -- Keeping the same for when stationary
|
|
|
|
Config.vehModels = {
|
|
"ambulance",
|
|
"police",
|
|
"police2",
|
|
"sheriff",
|
|
"sheriff2",
|
|
"firetruck",
|
|
"towtruck"
|
|
}
|