From fa38dc28e526c99835e580f782742e1652fd88d5 Mon Sep 17 00:00:00 2001 From: Rich Dunne Date: Mon, 31 Aug 2020 06:43:15 -0600 Subject: [PATCH] Changed speed zone radius options from 50m max with 1m increments to 200m max with 5m increments. --- SceneManager/Menus/EditWaypointMenu.cs | 2 +- SceneManager/Menus/PathCreationMenu.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SceneManager/Menus/EditWaypointMenu.cs b/SceneManager/Menus/EditWaypointMenu.cs index ef707c1..7442613 100644 --- a/SceneManager/Menus/EditWaypointMenu.cs +++ b/SceneManager/Menus/EditWaypointMenu.cs @@ -21,7 +21,7 @@ namespace SceneManager private static UIMenuNumericScrollerItem changeWaypointSpeed; private static UIMenuCheckboxItem collectorWaypoint = new UIMenuCheckboxItem("Collector", true, "If this waypoint will collect vehicles to follow the path"); private static UIMenuNumericScrollerItem changeCollectorRadius = new UIMenuNumericScrollerItem("New Collection Radius", "The distance from this waypoint (in meters) vehicles will be collected", 1, 50, 1); - private static UIMenuNumericScrollerItem changeSpeedZoneRadius = new UIMenuNumericScrollerItem("New Speed Zone Radius", "The distance from this collector waypoint (in meters) non-collected vehicles will drive at this waypoint's speed", 1, 50, 1); + private static UIMenuNumericScrollerItem changeSpeedZoneRadius = new UIMenuNumericScrollerItem("New Speed Zone Radius", "The distance from this collector waypoint (in meters) non-collected vehicles will drive at this waypoint's speed", 5, 200, 5); private static UIMenuCheckboxItem updateWaypointPosition = new UIMenuCheckboxItem("Update Waypoint Position", false, "Updates the waypoint's position to the player's current position"); internal static void InstantiateMenu() diff --git a/SceneManager/Menus/PathCreationMenu.cs b/SceneManager/Menus/PathCreationMenu.cs index 242b603..2180715 100644 --- a/SceneManager/Menus/PathCreationMenu.cs +++ b/SceneManager/Menus/PathCreationMenu.cs @@ -18,7 +18,7 @@ namespace SceneManager private static UIMenuNumericScrollerItem waypointSpeed; public static UIMenuCheckboxItem collectorWaypoint = new UIMenuCheckboxItem("Collector", true, "If this waypoint will collect vehicles to follow the path"); public static UIMenuNumericScrollerItem collectorRadius = new UIMenuNumericScrollerItem("Collection Radius", "The distance from this waypoint (in meters) vehicles will be collected", 1, 50, 1); - public static UIMenuNumericScrollerItem speedZoneRadius = new UIMenuNumericScrollerItem("Speed Zone Radius", "The distance from this collector waypoint (in meters) non-collected vehicles will drive at this waypoint's speed", 1, 50, 1); + public static UIMenuNumericScrollerItem speedZoneRadius = new UIMenuNumericScrollerItem("Speed Zone Radius", "The distance from this collector waypoint (in meters) non-collected vehicles will drive at this waypoint's speed", 5, 200, 5); internal static void InstantiateMenu() {