-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dedicated turning lane policy #1102
Comments
With regards to what delta-5 said and #1102 (comment) can I have some 2nd opinions on this matter? |
I think All I have to do is to add forward arrow (where applicable) to the bus lanes and we will be fine |
|
just for feature sake to separate car lanes from bus lanes when there is enough lanes you can do this: if (busLanes.Count > 0) {
// this optional piece of code imrpoves the lane arrows a little bit in some edge cases.
// see https://github.com/CitiesSkylinesMods/TMPE/pull/1104#issuecomment-834145850
int numLanes = GetCarLanes(segmentId, nodeId).Count;
int numDirs = CountDirections(segmentId, nodeId);
if (numLanes >= numDirs) {
// if there are enough lanes, try to have dedicated bus lanes.
SeparateSegmentLanes(
segmentId,
nodeId,
out res,
NetInfo.LaneType.Vehicle,
LaneArrowManager.VEHICLE_TYPES,
builtIn: builtIn,
alt2: alt2,
alt3: alt3);
}
} |
there should be an option that all jun intersections would have dedicated turning lanes by default.
edge cases:
related: #716
basically what this mod does: https://steamcommunity.com/sharedfiles/filedetails/?id=2119310640
I don't know why is this not in TMPE.
UPDATE:
I handled the bus lanes like #1102 (comment) which is different than the Improved turning lanes mod. the bus lanes still have forward+right but the non-bus lanes have dedicated turning lanes where possible.
The text was updated successfully, but these errors were encountered: