Skip to content

Commit

Permalink
Fix wrong Apollo name in HD Map import window.
Browse files Browse the repository at this point in the history
  • Loading branch information
martins-mozeiko committed Nov 20, 2019
1 parent cf1d700 commit 5711db7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/Editor/MapImport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private void OnGUI()
}

IsMeshNeeded = GUILayout.Toggle(IsMeshNeeded, " Create Signal/sign Mesh?");
if (importFormats[Selected] == "Apollo HD Map")
if (importFormats[Selected] == "Apollo 5 HD Map")
{
DownSampleDistanceThreshold = EditorGUILayout.FloatField(
new GUIContent("Distance Threshold", "distance threshold to down sample imported points"),
Expand Down Expand Up @@ -99,7 +99,7 @@ private void OnGUI()
return;
}

if (importFormats[Selected] == "Apollo HD Map")
if (importFormats[Selected] == "Apollo 5 HD Map")
{
ApolloMapImporter ApolloMapImporter = new ApolloMapImporter(
DownSampleDistanceThreshold, DownSampleDeltaThreshold, IsMeshNeeded);
Expand Down

0 comments on commit 5711db7

Please sign in to comment.