fixed lane offset

This commit is contained in:
Nikolay Korolev 2020-05-07 00:27:10 +03:00 committed by GitHub
parent 3931dc795f
commit a7c17a329a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -119,6 +119,7 @@ struct CCarPathLink
float GetY(void) { return y/8.0f; }
float GetDirX(void) { return dirX/100.0f; }
float GetDirY(void) { return dirY/100.0f; }
float GetLaneOffset(void) { return width/80.0f; }
float OneWayLaneOffset()
{
@ -126,7 +127,7 @@ struct CCarPathLink
return 0.5f - 0.5f * numRightLanes;
if (numRightLanes == 0)
return 0.5f - 0.5f * numLeftLanes;
return 0.5f;
return 0.5f + GetLaneOffset();
}
};