Skip to content

Commit

Permalink
disabling all test checkpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
bozmir committed Dec 18, 2024
1 parent 86cde00 commit 4e159eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Assets/Scripts/KerstSpecial/RaceController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,11 @@ private void GetCoordinatesForRoute()
if (routeFile != null)
{
routeCoords = ExtractLatLon(routeFile.text);
foreach(Vector2 c in routeCoords)
{
Coordinate nextCoord = new Coordinate(CoordinateSystem.WGS84, c.x, c.y, 0);
SpawnCheckpoint(nextCoord);
}
//foreach(Vector2 c in routeCoords)
//{
// Coordinate nextCoord = new Coordinate(CoordinateSystem.WGS84, c.x, c.y, 0);
// SpawnCheckpoint(nextCoord);
//}

}
else
Expand Down

0 comments on commit 4e159eb

Please sign in to comment.