From 7302ff707569d7a89de8d3eeff2b45d69ef7f172 Mon Sep 17 00:00:00 2001 From: madc0der Date: Thu, 17 Mar 2022 02:25:23 +0300 Subject: [PATCH] Added custom editor for curb builder. Implemented handles for start/end points for curb --- ERVertexPath/ERPathAdapter.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ERVertexPath/ERPathAdapter.cs b/ERVertexPath/ERPathAdapter.cs index 2557237..400f207 100644 --- a/ERVertexPath/ERPathAdapter.cs +++ b/ERVertexPath/ERPathAdapter.cs @@ -29,6 +29,11 @@ namespace ERVertexPath public float[] Distances => distances; + public Dictionary GetStartIndexToRoadMap() + { + return startIndexToRoadMap; + } + public void InitFromWrapper(ERPathToVertexPathWrapper wrapper) { InitFromData(wrapper.TotalDistance, wrapper.Positions, wrapper.Directions, wrapper.Normals,