use nil for unlimited surface speeds
This commit is contained in:
parent
0df81c49d5
commit
fe43734811
@ -32,15 +32,17 @@ speed_profile = {
|
|||||||
["default"] = 10
|
["default"] = 10
|
||||||
}
|
}
|
||||||
|
|
||||||
-- surface/trackype/smoothness speeds was estimated from
|
|
||||||
-- looking the the photos at the relevant wiki pages
|
|
||||||
surface_speeds = {
|
|
||||||
["asphalt"] = 400,
|
|
||||||
|
|
||||||
["concrete"] = 200,
|
-- surface/trackype/smoothness
|
||||||
["concrete:plates"] = 200,
|
-- values were estimated from looking at the photos at the relevant wiki pages
|
||||||
["concrete:lanes"] = 200,
|
|
||||||
["paved"] = 200,
|
-- max speed for surfaces
|
||||||
|
surface_speeds = {
|
||||||
|
["asphalt"] = nil, -- nil mean no limit. removing the line has the same effect
|
||||||
|
["concrete"] = nil,
|
||||||
|
["concrete:plates"] = nil,
|
||||||
|
["concrete:lanes"] = nil,
|
||||||
|
["paved"] = nil,
|
||||||
|
|
||||||
["cement"] = 80,
|
["cement"] = 80,
|
||||||
["compacted"] = 80,
|
["compacted"] = 80,
|
||||||
@ -63,8 +65,8 @@ surface_speeds = {
|
|||||||
|
|
||||||
["cobblestone"] = 30,
|
["cobblestone"] = 30,
|
||||||
["clay"] = 30,
|
["clay"] = 30,
|
||||||
["earth"] = 20,
|
|
||||||
|
|
||||||
|
["earth"] = 20,
|
||||||
["stone"] = 20,
|
["stone"] = 20,
|
||||||
["rocky"] = 20,
|
["rocky"] = 20,
|
||||||
["sand"] = 20,
|
["sand"] = 20,
|
||||||
@ -72,6 +74,7 @@ surface_speeds = {
|
|||||||
["mud"] = 10
|
["mud"] = 10
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- max speed for tracktypes
|
||||||
tracktype_speeds = {
|
tracktype_speeds = {
|
||||||
["grade1"] = 60,
|
["grade1"] = 60,
|
||||||
["grade2"] = 40,
|
["grade2"] = 40,
|
||||||
@ -80,6 +83,7 @@ tracktype_speeds = {
|
|||||||
["grade5"] = 20
|
["grade5"] = 20
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- max speed for smoothnesses
|
||||||
smoothness_speeds = {
|
smoothness_speeds = {
|
||||||
["intermediate"] = 80,
|
["intermediate"] = 80,
|
||||||
["bad"] = 40,
|
["bad"] = 40,
|
||||||
|
Loading…
Reference in New Issue
Block a user