From 72f5a4820106ea64c6c1291972445c23c8c08bf3 Mon Sep 17 00:00:00 2001 From: Rich Dunne Date: Thu, 3 Sep 2020 17:48:12 -0600 Subject: [PATCH] Blips for new waypoints added to disabled paths via the edit waypoint menu will now have correctly transparent blips --- SceneManager/Menus/EditWaypointMenu.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SceneManager/Menus/EditWaypointMenu.cs b/SceneManager/Menus/EditWaypointMenu.cs index 7442613..018440c 100644 --- a/SceneManager/Menus/EditWaypointMenu.cs +++ b/SceneManager/Menus/EditWaypointMenu.cs @@ -128,7 +128,11 @@ namespace SceneManager { var pathIndex = PathMainMenu.GetPaths().IndexOf(currentPath); var drivingFlag = drivingFlags[changeWaypointType.Index]; - var blip = PathCreationMenu.CreateWaypointBlip(pathIndex); + var blip = PathCreationMenu.CreateWaypointBlip(pathIndex, drivingFlag); + if (!currentPath.IsEnabled) + { + blip.Alpha = 0.5f; + } if (collectorWaypoint.Checked) {