11 lines
488 B
Lua
11 lines
488 B
Lua
return {
|
|
-- Density of various things in the world
|
|
-- Minimum value is 0.0, maximum value is 1.0
|
|
-- Value of 1.0 represents GTA Online populate rates
|
|
-- Value of 0.0 removes all of that type
|
|
parked = 0.8, -- Density of parked vehicles
|
|
vehicle = 0.8, -- Density of vehicles
|
|
randomvehicles = 0.8, -- Density of random vehicles
|
|
peds = 0.8, -- Density of random peds (civilians, etc.)
|
|
scenario = 0.8, -- Density of scenario peds (bikers, gangsters, etc.)
|
|
} |