From 5711db77bf6d70cccf7eaedac3ee59e1a623f6e2 Mon Sep 17 00:00:00 2001 From: Martins Mozeiko Date: Tue, 19 Nov 2019 18:36:03 -0800 Subject: [PATCH] Fix wrong Apollo name in HD Map import window. --- Assets/Scripts/Editor/MapImport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/Editor/MapImport.cs b/Assets/Scripts/Editor/MapImport.cs index af62dcd2f..858b50553 100644 --- a/Assets/Scripts/Editor/MapImport.cs +++ b/Assets/Scripts/Editor/MapImport.cs @@ -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"), @@ -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);