mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 15:40:29 +01:00
Added new Drive-To mode (Direct) which allows the AI to drive on the wrong side of the road to the next waypoint.
This commit is contained in:
parent
36a04f94c7
commit
a816967255
5 changed files with 22 additions and 6 deletions
|
|
@ -9,8 +9,8 @@ namespace SceneManager
|
|||
{
|
||||
class EditWaypointMenu
|
||||
{
|
||||
private static VehicleDrivingFlags[] drivingFlags = new VehicleDrivingFlags[] { VehicleDrivingFlags.Normal, VehicleDrivingFlags.StopAtDestination };
|
||||
private static string[] waypointTypes = new string[] { "Drive To", "Stop" };
|
||||
private static VehicleDrivingFlags[] drivingFlags = new VehicleDrivingFlags[] { VehicleDrivingFlags.Normal, VehicleDrivingFlags.IgnorePathFinding, VehicleDrivingFlags.StopAtDestination };
|
||||
private static string[] waypointTypes = new string[] { "Drive To (Normal)", "Drive To (Direct)", "Stop" };
|
||||
public static UIMenu editWaypointMenu { get; private set; }
|
||||
public static UIMenuItem updateWaypoint { get; private set; }
|
||||
public static UIMenuItem removeWaypoint { get; private set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue